]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.api/src/org/argeo/slc/SlcTypes.java
Start working on migration to new format.
[gpl/argeo-slc.git] / org.argeo.slc.api / src / org / argeo / slc / SlcTypes.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.slc;
17
18 /** JCR node types used by SLC */
19 public interface SlcTypes {
20
21 public final static String SLC_NAME_VERSION = "slc:nameVersion";
22 public final static String SLC_CATEGORIZED_NAME_VERSION = "slc:categorizedNameVersion";
23
24 public final static String SLC_AGENT_FACTORY = "slc:agentFactory";
25 public final static String SLC_AGENT = "slc:agent";
26 public final static String SLC_MODULE = "slc:module";
27 public final static String SLC_EXECUTION_MODULE = "slc:executionModule";
28 public final static String SLC_EXECUTION_SPEC = "slc:executionSpec";
29 public final static String SLC_EXECUTION_FLOW = "slc:executionFlow";
30 public final static String SLC_PROCESS = "slc:process";
31 public final static String SLC_REALIZED_FLOW = "slc:realizedFlow";
32
33 public final static String SLC_EXECUTION_SPEC_ATTRIBUTE = "slc:executionSpecAttribute";
34 public final static String SLC_PRIMITIVE_SPEC_ATTRIBUTE = "slc:primitiveSpecAttribute";
35 public final static String SLC_REF_SPEC_ATTRIBUTE = "slc:refSpecAttribute";
36
37 public final static String SLC_TEST_RESULT = "slc:testResult";
38 public final static String SLC_CHECK = "slc:check";
39 public final static String SLC_PROPERTY = "slc:property";
40 public final static String SLC_DIFF_RESULT = "slc:diffResult";
41
42 // Node types used for user defined and managed result UI tree
43 public final static String SLC_MY_RESULT_ROOT_FOLDER = "slc:myResultRootFolder";
44 public final static String SLC_RESULT_FOLDER = "slc:resultFolder";
45
46 // Log levels
47 public final static String SLC_LOG_ENTRY = "slc:logEntry";
48 public final static String SLC_LOG_TRACE = "slc:logTrace";
49 public final static String SLC_LOG_DEBUG = "slc:logDebug";
50 public final static String SLC_LOG_INFO = "slc:logInfo";
51 public final static String SLC_LOG_WARNING = "slc:logWarning";
52 public final static String SLC_LOG_ERROR = "slc:logError";
53
54 /*
55 * REPO
56 */
57 public final static String SLC_ARTIFACT = "slc:artifact";
58 public final static String SLC_ARTIFACT_VERSION_BASE = "slc:artifactVersion";
59 public final static String SLC_ARTIFACT_BASE = "slc:artifactBase";
60 public final static String SLC_GROUP_BASE = "slc:groupBase";
61 public final static String SLC_JAR_FILE = "slc:jarFile";
62 public final static String SLC_BUNDLE_ARTIFACT = "slc:bundleArtifact";
63 public final static String SLC_OSGI_VERSION = "slc:osgiVersion";
64 public final static String SLC_JAVA_PACKAGE = "slc:javaPackage";
65 public final static String SLC_EXPORTED_PACKAGE = "slc:exportedPackage";
66 public final static String SLC_IMPORTED_PACKAGE = "slc:importedPackage";
67 public final static String SLC_DYNAMIC_IMPORTED_PACKAGE = "slc:dynamicImportedPackage";
68 public final static String SLC_REQUIRED_BUNDLE = "slc:requiredBundle";
69 public final static String SLC_FRAGMENT_HOST = "slc:fragmentHost";
70
71 // Distribution management
72 // public final static String SLC_CATEGORY = "slc:category";
73 public final static String SLC_MODULAR_DISTRIBUTION_BASE = "slc:modularDistributionBase";
74 public final static String SLC_MODULAR_DISTRIBUTION = "slc:modularDistribution";
75 public final static String SLC_MODULE_COORDINATES = "slc:moduleCoordinates";
76
77 // origin
78 public final static String SLC_KNOWN_ORIGIN = "slc:knownOrigin";
79 public final static String SLC_PROXIED = "slc:proxied";
80
81 // rpm
82 public final static String SLC_RPM = "slc:rpm";
83 }