X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=runtime%2Forg.argeo.slc.repo%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Frepo%2FRepoTypes.java;h=c08b4958fe532451e735867cb99aa437aa078a75;hb=fa2bad4fbf272c2ee4c5dd57e896da1692bbe097;hp=5f13d4538891a57d1994b9006ffe099d008ea79b;hpb=a49b28f9f972f303961d40948b28604140ae3a83;p=gpl%2Fargeo-slc.git diff --git a/runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/RepoTypes.java b/runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/RepoTypes.java index 5f13d4538..c08b4958f 100644 --- a/runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/RepoTypes.java +++ b/runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/RepoTypes.java @@ -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 { }