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 lu...@apache.org on 2005/01/14 15:08:39 UTC

cvs commit: jakarta-slide/webdavclient/clientlib/src/java/org/apache/webdav/lib/properties CreationUserProperty.java ModificationUserProperty.java ModificationDateProperty.java PropertyFactory.java

luetzkendorf    2005/01/14 06:08:39

  Modified:    webdavclient/clientlib/src/java/org/apache/webdav/lib/properties
                        ModificationDateProperty.java PropertyFactory.java
  Added:       webdavclient/clientlib/src/java/org/apache/webdav/lib/properties
                        CreationUserProperty.java
                        ModificationUserProperty.java
  Log:
  two properties added
  
  Revision  Changes    Path
  1.3       +22 -1     jakarta-slide/webdavclient/clientlib/src/java/org/apache/webdav/lib/properties/ModificationDateProperty.java
  
  Index: ModificationDateProperty.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/webdavclient/clientlib/src/java/org/apache/webdav/lib/properties/ModificationDateProperty.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ModificationDateProperty.java	26 Sep 2004 14:32:23 -0000	1.2
  +++ ModificationDateProperty.java	14 Jan 2005 14:08:39 -0000	1.3
  @@ -1,4 +1,25 @@
  -// vi: set ts=3 sw=3:
  +/*
  + * $Header$
  + * $Revision$
  + * $Date$
  + *
  + * ====================================================================
  + *
  + * Copyright 1999-2002 The Apache Software Foundation 
  + *
  + * Licensed under the Apache License, Version 2.0 (the "License");
  + * you may not use this file except in compliance with the License.
  + * You may obtain a copy of the License at
  + *
  + *     http://www.apache.org/licenses/LICENSE-2.0
  + *
  + * Unless required by applicable law or agreed to in writing, software
  + * distributed under the License is distributed on an "AS IS" BASIS,
  + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  + * See the License for the specific language governing permissions and
  + * limitations under the License.
  + *
  + */
   package org.apache.webdav.lib.properties;
   
   import org.apache.webdav.lib.ResponseEntity;
  
  
  
  1.4       +2 -0      jakarta-slide/webdavclient/clientlib/src/java/org/apache/webdav/lib/properties/PropertyFactory.java
  
  Index: PropertyFactory.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/webdavclient/clientlib/src/java/org/apache/webdav/lib/properties/PropertyFactory.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PropertyFactory.java	8 Oct 2004 15:09:51 -0000	1.3
  +++ PropertyFactory.java	14 Jan 2005 14:08:39 -0000	1.4
  @@ -52,11 +52,13 @@
               PropertyFactory.register("DAV:", CheckedinProperty.TAG_NAME, CheckedinProperty.class);
               PropertyFactory.register("DAV:", CheckedoutProperty.TAG_NAME, CheckedoutProperty.class);
               PropertyFactory.register("DAV:", CreationDateProperty.TAG_NAME, CreationDateProperty.class);
  +            PropertyFactory.register("DAV:", CreationUserProperty.TAG_NAME, CreationUserProperty.class);
               PropertyFactory.register("DAV:", CurrentUserPrivilegeSetProperty.TAG_NAME, CurrentUserPrivilegeSetProperty.class);
               PropertyFactory.register("DAV:", GetContentLengthProperty.TAG_NAME, GetContentLengthProperty.class);
               PropertyFactory.register("DAV:", GetLastModifiedProperty.TAG_NAME, GetLastModifiedProperty.class);
               PropertyFactory.register("DAV:", LockDiscoveryProperty.TAG_NAME, LockDiscoveryProperty.class);
               PropertyFactory.register("DAV:", ModificationDateProperty.TAG_NAME, ModificationDateProperty.class);
  +            PropertyFactory.register("DAV:", ModificationUserProperty.TAG_NAME, ModificationUserProperty.class);
               PropertyFactory.register("DAV:", OwnerProperty.TAG_NAME, OwnerProperty.class);
               PropertyFactory.register("DAV:", PrincipalCollectionSetProperty.TAG_NAME, PrincipalCollectionSetProperty.class);
               PropertyFactory.register("DAV:", ResourceTypeProperty.TAG_NAME, ResourceTypeProperty.class);
  
  
  
  1.1                  jakarta-slide/webdavclient/clientlib/src/java/org/apache/webdav/lib/properties/CreationUserProperty.java
  
  Index: CreationUserProperty.java
  ===================================================================
  /*
   * $Header: /home/cvs/jakarta-slide/webdavclient/clientlib/src/java/org/apache/webdav/lib/properties/CreationUserProperty.java,v 1.1 2005/01/14 14:08:39 luetzkendorf Exp $
   * $Revision: 1.1 $
   * $Date: 2005/01/14 14:08:39 $
   *
   * ====================================================================
   *
   * Copyright 1999-2002 The Apache Software Foundation 
   *
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   *
   *     http://www.apache.org/licenses/LICENSE-2.0
   *
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   *
   */
  package org.apache.webdav.lib.properties;
  
  import org.apache.webdav.lib.ResponseEntity;
  import org.w3c.dom.Element;
  
  /**
   * ACL <code>creationuser</code> property.
   */
  public class CreationUserProperty extends HrefValuedProperty {
  
      /**
       * The property name.
       */
      public static final String TAG_NAME = "creationuser";
  
      public CreationUserProperty(ResponseEntity response, Element element) {
          super(response, element);
      }
  
  }
  
  
  
  1.1                  jakarta-slide/webdavclient/clientlib/src/java/org/apache/webdav/lib/properties/ModificationUserProperty.java
  
  Index: ModificationUserProperty.java
  ===================================================================
  /*
   * $Header: /home/cvs/jakarta-slide/webdavclient/clientlib/src/java/org/apache/webdav/lib/properties/ModificationUserProperty.java,v 1.1 2005/01/14 14:08:39 luetzkendorf Exp $
   * $Revision: 1.1 $
   * $Date: 2005/01/14 14:08:39 $
   *
   * ====================================================================
   *
   * Copyright 1999-2002 The Apache Software Foundation 
   *
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   *
   *     http://www.apache.org/licenses/LICENSE-2.0
   *
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   *
   */
  package org.apache.webdav.lib.properties;
  
  import org.apache.webdav.lib.ResponseEntity;
  import org.w3c.dom.Element;
  
  /**
   * ACL <code>modificationuser</code> property.
   */
  public class ModificationUserProperty extends HrefValuedProperty {
  
      /**
       * The property name.
       */
      public static final String TAG_NAME = "modificationuser";
  
      public ModificationUserProperty(ResponseEntity response, Element element) {
          super(response, element);
      }
  
  }
  
  
  

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