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/03/08 12:56:40 UTC

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

juergen     02/03/08 03:56:40

  Modified:    src/webdav/server/org/apache/slide/webdav/util
                        PropertyRetriever.java
  Log:
  Added parameter 'serverURL'.
  (ralf)
  
  Revision  Changes    Path
  1.2       +12 -6     jakarta-slide/src/webdav/server/org/apache/slide/webdav/util/PropertyRetriever.java
  
  Index: PropertyRetriever.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/util/PropertyRetriever.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PropertyRetriever.java	22 Feb 2002 17:42:43 -0000	1.1
  +++ PropertyRetriever.java	8 Mar 2002 11:56:40 -0000	1.2
  @@ -1,7 +1,7 @@
   /*
  - * $Header: /home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/util/PropertyRetriever.java,v 1.1 2002/02/22 17:42:43 pnever Exp $
  - * $Revision: 1.1 $
  - * $Date: 2002/02/22 17:42:43 $
  + * $Header: /home/cvs/jakarta-slide/src/webdav/server/org/apache/slide/webdav/util/PropertyRetriever.java,v 1.2 2002/03/08 11:56:40 juergen Exp $
  + * $Revision: 1.2 $
  + * $Date: 2002/03/08 11:56:40 $
    *
    * ====================================================================
    *
  @@ -92,7 +92,7 @@
    * providing property information (<code>PropFindMethod</code>,
    * <code>ReportMethod</code>) should use an implementation of this interface.
    *
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
    *
    * @author <a href="mailto:ralf.stuckert@softwareag.com">Ralf Stuckert</a>
    */
  @@ -107,7 +107,10 @@
        *
        * @param      requestedProperties  the requested properties.
        * @param      uri                  the URI of the resource.
  -     * @param      contextPath          the context path of the <code>uri</code>.
  +     * @param      contextPath          the context path of the uri. The concatenation of
  +     *                                  <code>serverURL</code>/<code>contextPath</code>
  +     *                                  /<code>uri</code> gives the absolute URL of the resource.
  +     * @param      serverURL            the URL of the server (e.g. <code>http://www.abc.com</code>).
        * @param      allpropSupportsDeltaV  indicates if the <code>DeltaV</code> specific
        *                                    properties should be included in case
        *                                    all properties are requested.
  @@ -123,7 +126,7 @@
        * @throws     LockTokenNotFoundException
        * @throws     JDOMException  if creating the JDOM Element fails.
        */
  -    public Element getPropertiesOfObject(RequestedProperties requestedProperties, String uri, String contextPath, boolean allpropSupportsDeltaV) throws ObjectLockedException, ServiceAccessException, LinkedObjectNotFoundException, AccessDeniedException, ObjectNotFoundException, RevisionDescriptorNotFoundException, LockTokenNotFoundException, JDOMException;
  +    public Element getPropertiesOfObject(RequestedProperties requestedProperties, String uri, String contextPath, String serverURL, boolean allpropSupportsDeltaV) throws ObjectLockedException, ServiceAccessException, LinkedObjectNotFoundException, AccessDeniedException, ObjectNotFoundException, RevisionDescriptorNotFoundException, LockTokenNotFoundException, JDOMException;
       
       /**
        * Returnes the requested properties of the resource identified by the given
  @@ -132,7 +135,10 @@
        *
        * @param      requestedProperties  the requested properties.
        * @param      uri                  the URI of the resource.
  -     * @param      contextPath          the context path of the <code>uri</code>.
  +     * @param      contextPath          the context path of the uri. The concatenation of
  +     *                                  <code>serverURL</code>/<code>contextPath</code>
  +     *                                  /<code>uri</code> gives the absolute URL of the resource.
  +     * @param      serverURL            the URL of the server (e.g. <code>http://www.abc.com</code>).
        * @param      allpropSupportsDeltaV  indicates if the <code>DeltaV</code> specific
        *                                    properties should be included in case
        *                                    all properties are requested.
  @@ -146,7 +152,7 @@
        * @throws     LockTokenNotFoundException
        * @throws     JDOMException  if creating the JDOM Element fails.
        */
  -    public Element getPropertiesOfObject(RequestedProperties requestedProperties, String uri, NodeRevisionNumber revisionNumber, String contextPath, boolean allpropSupportsDeltaV) throws ObjectLockedException, ServiceAccessException, LinkedObjectNotFoundException, AccessDeniedException, ObjectNotFoundException, RevisionDescriptorNotFoundException, LockTokenNotFoundException, JDOMException;
  +    public Element getPropertiesOfObject(RequestedProperties requestedProperties, String uri, NodeRevisionNumber revisionNumber, String contextPath, String serverURL, boolean allpropSupportsDeltaV) throws ObjectLockedException, ServiceAccessException, LinkedObjectNotFoundException, AccessDeniedException, ObjectNotFoundException, RevisionDescriptorNotFoundException, LockTokenNotFoundException, JDOMException;
       
       
   }
  
  
  

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