X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=runtime%2Forg.argeo.slc.repo%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Frepo%2FRepoNames.java;h=5b709ee39d757d2f0ad6a0743190769b31d30a19;hb=aeaa45c7cfbb4f2376a4ec02e6dd71d711a52c5b;hp=4eab86881d7f589fee79f7945dd4b8b5fd178197;hpb=a49b28f9f972f303961d40948b28604140ae3a83;p=gpl%2Fargeo-slc.git diff --git a/runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/RepoNames.java b/runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/RepoNames.java index 4eab86881..5b709ee39 100644 --- a/runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/RepoNames.java +++ b/runtime/org.argeo.slc.repo/src/main/java/org/argeo/slc/repo/RepoNames.java @@ -1,35 +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"; - - // 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:symbolicName"; - 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 { }