From: Mathieu Baudier Date: Tue, 24 Feb 2015 20:46:16 +0000 (+0000) Subject: Document JCR constants X-Git-Tag: argeo-commons-2.1.30~332 X-Git-Url: http://git.argeo.org/?a=commitdiff_plain;h=d8761432a09ebcb3ed50b6e2507b9bce9d43c878;p=lgpl%2Fargeo-commons.git Document JCR constants git-svn-id: https://svn.argeo.org/commons/trunk@7941 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- diff --git a/org.argeo.server.jcr/src/org/argeo/jcr/ArgeoJcrConstants.java b/org.argeo.server.jcr/src/org/argeo/jcr/ArgeoJcrConstants.java index b9b513a30..8b64b332e 100644 --- a/org.argeo.server.jcr/src/org/argeo/jcr/ArgeoJcrConstants.java +++ b/org.argeo.server.jcr/src/org/argeo/jcr/ArgeoJcrConstants.java @@ -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"; }