]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/RepoTypes.java
MIgrate binaries to target workspace
[gpl/argeo-slc.git] / runtime / org.argeo.slc.repo / src / main / java / org / argeo / slc / repo / RepoTypes.java
index 5f13d4538891a57d1994b9006ffe099d008ea79b..c08b4958fe532451e735867cb99aa437aa078a75 100644 (file)
@@ -1,16 +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;
 
-/** Node types used programatically. */
-public interface RepoTypes {
+import org.argeo.slc.jcr.SlcTypes;
 
-       public final static String SLC_ARTIFACT = "slc:artifact";
-       public final static String SLC_JAR_FILE = "slc:jarFile";
-       public final static String SLC_BUNDLE_ARTIFACT = "slc:bundleArtifact";
-       public final static String SLC_OSGI_VERSION = "slc:osgiVersion";
-       public final static String SLC_JAVA_PACKAGE = "slc:javaPackage";
-       public final static String SLC_EXPORTED_PACKAGE = "slc:exportedPackage";
-       public final static String SLC_IMPORTED_PACKAGE = "slc:importedPackage";
-       public final static String SLC_DYNAMIC_IMPORTED_PACKAGE = "slc:dynamicImportedPackage";
-       public final static String SLC_REQUIRED_BUNDLE = "slc:requiredBundle";
-       public final static String SLC_FRAGMENT_HOST = "slc:fragmentHost";
+/**
+ * Node types used programatically.
+ * 
+ * @deprecated use {@link SlcTypes} instead
+ */
+public interface RepoTypes extends SlcTypes {
 }