You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by an...@apache.org on 2006/03/13 09:40:13 UTC

svn commit: r385464 - /incubator/jackrabbit/trunk/jcr-server/webdav/src/java/org/apache/jackrabbit/webdav/ordering/OrderingConstants.java

Author: angela
Date: Mon Mar 13 00:40:12 2006
New Revision: 385464

URL: http://svn.apache.org/viewcvs?rev=385464&view=rev
Log:
commented separation lines

Modified:
    incubator/jackrabbit/trunk/jcr-server/webdav/src/java/org/apache/jackrabbit/webdav/ordering/OrderingConstants.java

Modified: incubator/jackrabbit/trunk/jcr-server/webdav/src/java/org/apache/jackrabbit/webdav/ordering/OrderingConstants.java
URL: http://svn.apache.org/viewcvs/incubator/jackrabbit/trunk/jcr-server/webdav/src/java/org/apache/jackrabbit/webdav/ordering/OrderingConstants.java?rev=385464&r1=385463&r2=385464&view=diff
==============================================================================
--- incubator/jackrabbit/trunk/jcr-server/webdav/src/java/org/apache/jackrabbit/webdav/ordering/OrderingConstants.java (original)
+++ incubator/jackrabbit/trunk/jcr-server/webdav/src/java/org/apache/jackrabbit/webdav/ordering/OrderingConstants.java Mon Mar 13 00:40:12 2006
@@ -32,6 +32,20 @@
     public static final Namespace NAMESPACE = DavConstants.NAMESPACE;
 
     /**
+     * Constant representing the DAV:custom ordering type URI, which indicates
+     * that the collection is not ordered.
+     */
+    public static final String ORDERING_TYPE_CUSTOM = "DAV:custom";
+
+    /**
+     * Constant representing the DAV:unordered ordering type URI, which indicates
+     * that the collection is to be ordered, but the semantics of the ordering
+     * is not being advertised.
+     */
+    public static final String ORDERING_TYPE_UNORDERED = "DAV:unordered";
+
+    //---< Headers >------------------------------------------------------------
+    /**
      * The "Ordering-Type" request header.
      */
     public static final String HEADER_ORDERING_TYPE = "Ordering-Type";
@@ -47,6 +61,7 @@
      */
     public static final String HEADER_POSITION = "Position";
 
+    //---< XML Element, Attribute Names >---------------------------------------
     /**
      * Xml elements used for reordering internal members of a collection.
      */
@@ -61,19 +76,7 @@
     public static final String XML_BEFORE = "before";
     public static final String XML_AFTER = "after";
 
-    /**
-     * Constant representing the DAV:custom ordering type URI, which indicates
-     * that the collection is not ordered.
-     */
-    public static final String ORDERING_TYPE_CUSTOM = "DAV:custom";
-
-    /**
-     * Constant representing the DAV:unordered ordering type URI, which indicates
-     * that the collection is to be ordered, but the semantics of the ordering
-     * is not being advertised.
-     */
-    public static final String ORDERING_TYPE_UNORDERED = "DAV:unordered";
-
+    //---< XML Element, Attribute Names >---------------------------------------
     /**
      * The DAV:ordering-type property indicates whether the collection is
      * ordered and, if so, uniquely identifies the semantics of the ordering.