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/08/01 12:48:39 UTC

cvs commit: jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods AclMethod.java CheckinMethod.java CheckoutMethod.java LabelMethod.java MkWorkspaceMethod.java UncheckoutMethod.java VersionControlMethod.java

juergen     2002/08/01 03:48:38

  Modified:    src/webdav/client/src/org/apache/webdav/lib/methods
                        AclMethod.java CheckinMethod.java
                        CheckoutMethod.java LabelMethod.java
                        MkWorkspaceMethod.java UncheckoutMethod.java
                        VersionControlMethod.java
  Log:
  store the received body in the update method.
  
  Revision  Changes    Path
  1.7       +3 -26     jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/AclMethod.java
  
  Index: AclMethod.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/AclMethod.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- AclMethod.java	25 Apr 2002 21:12:29 -0000	1.6
  +++ AclMethod.java	1 Aug 2002 10:48:38 -0000	1.7
  @@ -246,29 +246,6 @@
   
       }
       
  -    
  -    /**
  -     * Parse response.
  -     *
  -     * @param is Input stream
  -     */
  -    public void parseResponse(InputStream is)
  -        throws IOException {
   
  -        // FIXME : In some cases, the response can be an XML document
  -
  -    }
  -    
  -    
  -    /**
  -     * Process response headers. The contract of this method is that it only
  -     * parses the response headers.
  -     *
  -     * @param headers Headers list
  -     */
  -    public void processResponseHeaders(Hashtable headers) {
  -        
  -    }
  -    
       
   }
  
  
  
  1.6       +3 -35     jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/CheckinMethod.java
  
  Index: CheckinMethod.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/CheckinMethod.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- CheckinMethod.java	8 Jul 2002 13:13:30 -0000	1.5
  +++ CheckinMethod.java	1 Aug 2002 10:48:38 -0000	1.6
  @@ -163,39 +163,7 @@
           if (query != null) result = query;
           
           return result;
  -        
  -        
  -        
  -        
  -        /*if (query != null)
  -            return printer.toString()+ query;
  -        XMLPrinter printer = new XMLPrinter();
  -        printer.writeXMLHeader();
  -        System.out.println(printer.toString());
  -        printer.writeElement("D", "DAV:", "checkin",
  -                             XMLPrinter.OPENING);
  -      
  -        
  -        printer.writeElement("D", "fork-ok", XMLPrinter.NO_CONTENT);
  -        printer.writeElement("D", "keep-checked-out", XMLPrinter.NO_CONTENT);
  -        
  -
  -        printer.writeElement("D", "checkin", XMLPrinter.CLOSING);
  -
  -        query = printer.toString();
  -        System.out.println("query: " +query);
  -         return query;*/
  -
       }
   
   
  -    /**
  -     * Parse response.
  -     *
  -     * @param input Input stream
  -     */
  -    public void parseResponse(InputStream input)
  -        throws IOException, HttpException {
  -        
  -    }
   }
  
  
  
  1.7       +3 -13     jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/CheckoutMethod.java
  
  Index: CheckoutMethod.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/CheckoutMethod.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- CheckoutMethod.java	29 Jul 2002 11:09:38 -0000	1.6
  +++ CheckoutMethod.java	1 Aug 2002 10:48:38 -0000	1.7
  @@ -140,14 +140,4 @@
           } else return "";
       }
   
  -
  -    /**
  -     * Parse response.
  -     *
  -     * @param input Input stream
  -     */
  -    public void parseResponse(InputStream input)
  -        throws IOException, HttpException {
  -        
  -    }
   }
  
  
  
  1.3       +4 -13     jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/LabelMethod.java
  
  Index: LabelMethod.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/LabelMethod.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- LabelMethod.java	2 Jul 2002 10:40:47 -0000	1.2
  +++ LabelMethod.java	1 Aug 2002 10:48:38 -0000	1.3
  @@ -116,16 +116,7 @@
       
       // --------------------------------------------------- WebdavMethod Methods
       
  -    
  -    /**
  -     * Parse the response body.  The MkWorkspace method does not receive a response
  -     * body.
  -     *
  -     * @param is Input stream
  -     */
  -    public void parseResponse(InputStream is)
  -        throws IOException {
  -    }
  +
   
   
   }
  
  
  
  1.5       +4 -13     jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/MkWorkspaceMethod.java
  
  Index: MkWorkspaceMethod.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/MkWorkspaceMethod.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- MkWorkspaceMethod.java	1 Jul 2002 11:02:52 -0000	1.4
  +++ MkWorkspaceMethod.java	1 Aug 2002 10:48:38 -0000	1.5
  @@ -116,16 +116,7 @@
       
       // --------------------------------------------------- WebdavMethod Methods
       
  -    
  -    /**
  -     * Parse the response body.  The MkWorkspace method does not receive a response
  -     * body.
  -     *
  -     * @param is Input stream
  -     */
  -    public void parseResponse(InputStream is)
  -        throws IOException {
  -    }
  +
   
   
   }
  
  
  
  1.6       +4 -12     jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/UncheckoutMethod.java
  
  Index: UncheckoutMethod.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/UncheckoutMethod.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- UncheckoutMethod.java	25 Apr 2002 21:15:15 -0000	1.5
  +++ UncheckoutMethod.java	1 Aug 2002 10:48:38 -0000	1.6
  @@ -140,13 +140,5 @@
       }
   
   
  -    /**
  -     * Parse response.
  -     *
  -     * @param input Input stream
  -     */
  -    public void parseResponse(InputStream input)
  -        throws IOException, HttpException {
  -        
  -    }
  +
   }
  
  
  
  1.6       +4 -12     jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/VersionControlMethod.java
  
  Index: VersionControlMethod.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/VersionControlMethod.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- VersionControlMethod.java	29 Jul 2002 11:09:38 -0000	1.5
  +++ VersionControlMethod.java	1 Aug 2002 10:48:38 -0000	1.6
  @@ -173,13 +173,5 @@
       }
   
   
  -    /**
  -     * Parse response.
  -     *
  -     * @param input Input stream
  -     */
  -    public void parseResponse(InputStream input)
  -        throws IOException, HttpException {
  -        
  -    }
  +
   }
  
  
  

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