You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by ju...@apache.org on 2002/09/23 15:29:58 UTC

cvs commit: jakarta-slide/src/webdav/server/org/apache/slide/webdav/method PropFindMethod.java

juergen     2002/09/23 06:29:58

  Modified:    src/webdav/server/org/apache/slide/webdav/method
                        PropFindMethod.java
  Log:
  Do not catch AccessDeniedException since this is handled by the PropertyRetriever(Impl).
  (ralf)
  
  Revision  Changes    Path
  1.84      +3 -7      jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/PropFindMethod.java
  
  Index: PropFindMethod.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/PropFindMethod.java,v
  retrieving revision 1.83
  retrieving revision 1.84
  diff -u -r1.83 -r1.84
  --- PropFindMethod.java	23 Aug 2002 14:25:20 -0000	1.83
  +++ PropFindMethod.java	23 Sep 2002 13:29:57 -0000	1.84
  @@ -573,10 +573,6 @@
                       while (iterator.hasNext()) {
                           responseElement.addContent((Element)iterator.next());
                       }
  -                } catch (AccessDeniedException e) {
  -                    int statusCode = WebdavStatus.SC_FORBIDDEN;
  -                    sendError( statusCode, e );
  -                    throw new WebdavException( statusCode );
                   } catch (ServiceAccessException e) {
                       int statusCode = WebdavStatus.SC_FORBIDDEN;
                       sendError( statusCode, e );
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>