From d8761432a09ebcb3ed50b6e2507b9bce9d43c878 Mon Sep 17 00:00:00 2001 From: Mathieu Baudier Date: Tue, 24 Feb 2015 20:46:16 +0000 Subject: [PATCH] Document JCR constants git-svn-id: https://svn.argeo.org/commons/trunk@7941 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- .../src/org/argeo/jcr/ArgeoJcrConstants.java | 8 ++++++++ 1 file changed, 8 insertions(+) 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"; } -- 2.30.2