2 * Copyright © 2016-2017 European Support Limited
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package org.openecomp.sdc.tosca.services;
19 public class ConfigConstants {
21 public static final String NAMESPACE = "ToscaModel";
24 public static final String PREFIX = "tosca.entity.namespace.prefix";
25 public static final String PREFIX_CAPABILITY_TYPE = PREFIX + ".capabilityType";
26 public static final String PREFIX_DATA_TYPE = PREFIX + ".dataType";
27 public static final String PREFIX_GROUP_TYPE = PREFIX + ".groupType";
28 public static final String PREFIX_POLICY_TYPE = PREFIX + ".policyType";
29 public static final String PREFIX_ARTIFACT_TYPE = PREFIX + ".artifactType";
30 public static final String PREFIX_RELATIONSHIP_TYPE = PREFIX + ".relationshipType";
31 public static final String PREFIX_ANNOTATION_TYPE = PREFIX + ".annotationType";
33 public static final String PREFIX_NODE_TYPE_VFC = PREFIX + ".nodeType.vfc";
34 public static final String PREFIX_NODE_TYPE_NETWORK = PREFIX + ".nodeType.network";
35 public static final String PREFIX_NODE_TYPE_CP = PREFIX + ".nodeType.connectionPoint";
36 public static final String PREFIX_NODE_TYPE_EXTERNAL_CP = PREFIX + ".nodeType"
37 + ".external.connectionPoint";
38 public static final String PREFIX_NODE_TYPE_ABSTARCT = PREFIX + ".nodeType.abstract";
39 public static final String PREFIX_NODE_TYPE_RULE = PREFIX + ".nodeType.rule";
41 private ConfigConstants() {