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 oz...@apache.org on 2004/05/13 09:54:58 UTC

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

ozeigermann    2004/05/13 00:54:58

  Modified:    src/webdav/server/org/apache/slide/webdav
                        WebdavServletConfig.java
  Log:
  Made it more accessible on request by Ben Alex in 
  http://nagoya.apache.org/eyebrowse/ReadMsg?listName=slide-dev@jakarta.apache.org&msgNo=11398
  
  Revision  Changes    Path
  1.9       +10 -10    jakarta-slide/src/webdav/server/org/apache/slide/webdav/WebdavServletConfig.java
  
  Index: WebdavServletConfig.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/WebdavServletConfig.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- WebdavServletConfig.java	11 Feb 2004 11:30:27 -0000	1.8
  +++ WebdavServletConfig.java	13 May 2004 07:54:58 -0000	1.9
  @@ -70,7 +70,7 @@
       /**
        * The wrapped ServletConfig.
        */
  -    private ServletConfig config;
  +    protected ServletConfig config;
       
       
       /**
  @@ -85,31 +85,31 @@
        * Because the Slide WebdavServlet is usually deployed as default servlet, 
        * this setting defaults to <code>true</code>
        */
  -    private boolean isDefaultServlet = true;
  +    protected boolean isDefaultServlet = true;
       
       
       /**
        * Default MIME type of resources.
        */
  -    private String defaultMimeType = "text/plain";
  +    protected String defaultMimeType = "text/plain";
       
       
       /**
        * Depth limit. To limit tree browsing when using depth = infinity.
        */
  -    private int depthLimit = 3;
  +    protected int depthLimit = 3;
       
       
       /**
        * Default MIME type of resources.
        */
  -    private String scope = "";
  +    protected String scope = "";
       
       
       /**
        * Class name of the WebdavMethodFactory.
        */
  -    private String methodFactory;
  +    protected String methodFactory;
       
       
       // ----------------------------------------------------------- Construction
  @@ -120,7 +120,7 @@
        *
        * @param config the ServletConfig to wrap
        */
  -    WebdavServletConfig(ServletConfig config) {
  +    public WebdavServletConfig(ServletConfig config) {
           
           this.config = config;
           
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: slide-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: slide-dev-help@jakarta.apache.org