]> git.argeo.org Git - gpl/argeo-slc.git/blob - DistConstants.java
10e5f6adf5e7edd9f1f911201dd46adc7ddaaa01
[gpl/argeo-slc.git] / DistConstants.java
1 package org.argeo.slc.client.ui.dist;
2
3 import org.argeo.slc.SlcNames;
4 import org.osgi.framework.Constants;
5
6 /** Constants used across the application. */
7 public interface DistConstants {
8
9 /*
10 * MISCEALLENEOUS
11 */
12 public final static String DATE_TIME_FORMAT = "MM/dd/yyyy, HH:mm";
13 public final static String DATE_FORMAT = "MM/dd/yyyy";
14 // this should be directly retrieved from JCR APIs once we have solved the
15 // problem of the translation of name space to shortcut, typically
16 // {http://www.jcp.org/jcr/1.0} to jcr:
17 public final static String JCR_IDENTIFIER = "jcr:uuid";
18 public final static String JCR_MIXIN_TYPES = "jcr:mixinTypes";
19
20 // FIXME: should be defined in SlcNames
21 public final static String SLC_BUNDLE_NAME = SlcNames.SLC_
22 + Constants.BUNDLE_NAME;
23 public final static String SLC_BUNDLE_LICENCE = SlcNames.SLC_
24 + "Bundle-License";
25 public final static String SLC_BUNDLE_VENDOR = SlcNames.SLC_
26 + Constants.BUNDLE_VENDOR;
27
28 public final static String SLC_BUNDLE_DESCRIPTION = SlcNames.SLC_
29 + Constants.BUNDLE_DESCRIPTION;
30
31 public final String DEFAULT_PUBLIC_REPOSITORY_URI = "vm:///java";
32
33 }