]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/RepoNames.java
MIgrate binaries to target workspace
[gpl/argeo-slc.git] / runtime / org.argeo.slc.repo / src / main / java / org / argeo / slc / repo / RepoNames.java
index 0a69b3d00ab08f4303593e31bc76ccdaa726d38a..5b709ee39d757d2f0ad6a0743190769b31d30a19 100644 (file)
@@ -1,36 +1,26 @@
+/*
+ * Copyright (C) 2007-2012 Mathieu Baudier
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *         http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.argeo.slc.repo;
 
-/** Names used for items (nodes and properties). */
-public interface RepoNames {
-       public final static String SLC_ = "slc:";
+import org.argeo.slc.jcr.SlcNames;
 
-       // shared
-       public final static String SLC_NAME = "slc:name";
-       public final static String SLC_VERSION = "slc:version";
-       public final static String SLC_OPTIONAL = "slc:optional";
-       public final static String SLC_AS_STRING = "slc:asString";
-
-       // slc:artifact
-       public final static String SLC_ARTIFACT_ID = "slc:artifactId";
-       public final static String SLC_GROUP_ID = "slc:groupId";
-       public final static String SLC_ARTIFACT_VERSION = "slc:artifactVersion";
-       public final static String SLC_ARTIFACT_EXTENSION = "slc:artifactExtension";
-       public final static String SLC_ARTIFACT_CLASSIFIER = "slc:artifactClassifier";
-
-       // slc:jarArtifact
-       public final static String SLC_MANIFEST = "slc:manifest";
-
-       // shared OSGi
-       public final static String SLC_SYMBOLIC_NAME = "slc:symbolic-name";
-       public final static String SLC_BUNDLE_VERSION = "slc:bundle-version";
-
-       // slc:osgiBaseVersion
-       public final static String SLC_MAJOR = "slc:major";
-       public final static String SLC_MINOR = "slc:minor";
-       public final static String SLC_MICRO = "slc:micro";
-       // slc:osgiVersion
-       public final static String SLC_QUALIFIER = "slc:qualifier";
-
-       // slc:exportedPackage
-       public final static String SLC_USES = "slc:uses";
+/**
+ * Names used for items (nodes and properties).
+ * 
+ * @deprecated use {@link SlcNames} instead
+ */
+public interface RepoNames extends SlcNames {
 }