X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=plugins%2Forg.argeo.slc.client.ui.dist%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fclient%2Fui%2Fdist%2FDistConstants.java;h=589f660cd7aba8e946440294052319d26c7111f6;hb=48b6f7647f12f4b96d1914bcafc95efd7f43cc43;hp=34edaaad07fd98869a4a644ec3666e4fdca556f9;hpb=bd06b3358f8c754765fcb222ac3b2273d0d56c37;p=gpl%2Fargeo-slc.git diff --git a/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/DistConstants.java b/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/DistConstants.java index 34edaaad0..589f660cd 100644 --- a/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/DistConstants.java +++ b/plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/DistConstants.java @@ -20,19 +20,29 @@ import org.osgi.framework.Constants; /** Constants used across the application. */ public interface DistConstants { + /* * MISCEALLENEOUS */ public final static String DATE_TIME_FORMAT = "MM/dd/yyyy, HH:mm"; public final static String DATE_FORMAT = "MM/dd/yyyy"; - // this should be directly got in JCR + // this should be directly retrieved from JCR APIs once we have solved the + // problem of the translation of name space to shortcut, typically + // {http://www.jcp.org/jcr/1.0} to jcr: public final static String JCR_IDENTIFIER = "jcr:uuid"; + public final static String JCR_MIXIN_TYPES = "jcr:mixinTypes"; - // FIXME: might be defined in SlcNames + // FIXME: should be defined in SlcNames public final static String SLC_BUNDLE_NAME = SlcNames.SLC_ + Constants.BUNDLE_NAME; public final static String SLC_BUNDLE_LICENCE = SlcNames.SLC_ + "Bundle-License"; public final static String SLC_BUNDLE_VENDOR = SlcNames.SLC_ + Constants.BUNDLE_VENDOR; + + public final static String SLC_BUNDLE_DESCRIPTION = SlcNames.SLC_ + + Constants.BUNDLE_DESCRIPTION; + + public final String DEFAULT_PUBLIC_REPOSITORY_URI = "vm:///java"; + }