]> git.argeo.org Git - lgpl/argeo-commons.git/blob - ArgeoJcrConstants.java
cc2de8a7687b50e3ef80405bc28008daad157929
[lgpl/argeo-commons.git] / ArgeoJcrConstants.java
1 package org.argeo.jcr;
2
3 /** JCR related constants */
4 public interface ArgeoJcrConstants {
5 public final static String ARGEO_BASE_PATH = "/argeo:system";
6 public final static String DATA_MODELS_BASE_PATH = ARGEO_BASE_PATH
7 + "/argeo:dataModels";
8 /** The home base path. Not yet configurable */
9 public final static String DEFAULT_HOME_BASE_PATH = "/argeo:home";
10
11 // parameters (typically for call to a RepositoryFactory)
12 public final static String JCR_REPOSITORY_ALIAS = "argeo.jcr.repository.alias";
13 public final static String JCR_REPOSITORY_URI = "argeo.jcr.repository.uri";
14
15 // standard aliases
16 public final static String ALIAS_NODE = "node";
17
18 }