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=e7fbef20a0ccc227e6f0b9dbf7f133c81f765d02;hb=0dc6d1ec9f5b7fe454bd3ea5101f90d40163faac;hp=6738bd57a6002bcb93da85b92a7a4d1fab7cba55;hpb=651d33e13bfa9a7b46464be412023ee747e612e8;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 6738bd57a..e7fbef20a 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 @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2012 Mathieu Baudier + * Copyright (C) 2007-2012 Argeo GmbH * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,16 +15,31 @@ */ 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 String DEFAULT_PUBLIC_REPOSITORY_URI = "vm:///java"; - - }