]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/DistConstants.java
Migrate SLC modules
[gpl/argeo-slc.git] / plugins / org.argeo.slc.client.ui.dist / src / main / java / org / argeo / slc / client / ui / dist / DistConstants.java
index d3c3e6828294920a5e588d2585cca8a69d6badd0..589f660cd7aba8e946440294052319d26c7111f6 100644 (file)
  */
 package org.argeo.slc.client.ui.dist;
 
+import org.argeo.slc.jcr.SlcNames;
+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: 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";
 
-       
-       
 }