HTTP GET support for ACR.
[lgpl/argeo-commons.git] / org.argeo.api.acr / src / org / argeo / api / acr / CrName.java
index f8ef602dbd5b962eb2c8df739be68c211f7ce26e..3fe3462b97fc6f7b1b0459e242efc14a9135c874 100644 (file)
@@ -1,40 +1,40 @@
 package org.argeo.api.acr;
 
 /** Standard names. */
-public enum CrName implements ContentNameSupplier {
+public enum CrName implements QNamed {
 
        /*
         * TYPES
         */
-       COLLECTION, // a collection type
+       collection, // a collection type
 
        /*
         * ATTRIBUTES
         */
-       UUID, // the UUID of a content
-       MOUNT,
+       uuid, // the UUID of a content
+       mount, // a mount point
+       cc, // content class
 
        /*
         * ATTRIBUTES FROM FILE SEMANTICS
         */
-       CREATION_TIME, //
-       LAST_MODIFIED_TIME, //
-       SIZE, //
-       FILE_KEY, //
-       OWNER, //
-       GROUP, //
-       PERMISSIONS, //
+       creationTime, //
+       lastModifiedTime, //
+       size, //
+       fileKey, //
+       owner, //
+       group, //
+       permissions, //
 
        /*
         * CONTENT NAMES
         */
-       ROOT,
+       root,
 
        //
        ;
 
        public final static String CR_NAMESPACE_URI = "http://www.argeo.org/ns/cr";
-
        public final static String CR_DEFAULT_PREFIX = "cr";
 
        public final static String LDAP_NAMESPACE_URI = "http://www.argeo.org/ns/ldap";
@@ -43,19 +43,18 @@ public enum CrName implements ContentNameSupplier {
        public final static String ROLE_NAMESPACE_URI = "http://www.argeo.org/ns/role";
        public final static String ROLE_DEFAULT_PREFIX = "role";
 
-       private final ContentName value;
-
-       CrName() {
-               value = toContentName();
-       }
+//     private final ContentName value;
 
-       @Override
-       public ContentName get() {
-               return value;
-       }
+//     CrName() {
+//             value = new ContentName(CR_NAMESPACE_URI, name(), RuntimeNamespaceContext.getNamespaceContext());
+//     }
+//
+//     public QName qName() {
+//             return value;
+//     }
 
        @Override
-       public String getNamespaceURI() {
+       public String getNamespace() {
                return CR_NAMESPACE_URI;
        }