Document JCR constants
authorMathieu Baudier <mbaudier@argeo.org>
Tue, 24 Feb 2015 20:46:16 +0000 (20:46 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Tue, 24 Feb 2015 20:46:16 +0000 (20:46 +0000)
git-svn-id: https://svn.argeo.org/commons/trunk@7941 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

org.argeo.server.jcr/src/org/argeo/jcr/ArgeoJcrConstants.java

index b9b513a30d34505ba215a6ce6ba3b1d8c4685fb3..8b64b332e20606b9b090fa1c1f35365d6f795cbb 100644 (file)
@@ -15,6 +15,8 @@
  */
 package org.argeo.jcr;
 
+import javax.jcr.Repository;
+
 /** Argeo model specific constants */
 public interface ArgeoJcrConstants {
        public final static String ARGEO_BASE_PATH = "/argeo:system";
@@ -24,10 +26,16 @@ public interface ArgeoJcrConstants {
                        + "/argeo:people";
 
        // parameters (typically for call to a RepositoryFactory)
+       /** Key for a JCR repository alias */
        public final static String JCR_REPOSITORY_ALIAS = "argeo.jcr.repository.alias";
+       /** Key for a JCR repository URI */
        public final static String JCR_REPOSITORY_URI = "argeo.jcr.repository.uri";
 
        // standard aliases
+       /**
+        * Reserved alias for the "node" {@link Repository}, that is, the default
+        * JCR repository.
+        */
        public final static String ALIAS_NODE = "node";
 
 }