summaryrefslogtreecommitdiffstats
path: root/dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/common/ConstCommon.java
blob: 8678dcb86a0e79637949bc2d3bf2ed8b85790c4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */

package org.onap.sdc.dcae.checker.common;

public class ConstCommon {
    public static final String PROPERTIES = "properties";
    public static final String TYPE = " type ";
    public static final String DEFAULT = "default";
    public static final String ATTRIBUTES = "attributes";
    public static final String DATA_TYPES = "data_types";
    public static final String VALID_SOURCE_TYPES = "valid_source_types";
    public static final String RELATIONSHIP_TYPES = "relationship_types";
    public static final String INTERFACES = "interfaces";
    public static final String VALID_TARGET_TYPES = "valid_target_types";
    public static final String ARTIFACT_TYPES = "artifact_types";
    public static final String INTERFACE_TYPES = "interface_types";
    public static final String NODE_TYPES = "node_types";
    public static final String REQUIREMENTS = "requirements";
    public static final String CAPABILITIES = "capabilities";
    public static final String GROUP_TYPES = "group_types";
    public static final String TARGETS_CONSTANT = "targets";
    public static final String POLICY_TYPES = "policy_types";
    public static final String IS_NONE_OF_THOSE = "' is none of those";
    public static final String INPUTS = "inputs";
    public static final String CAPABILITY = "capability";
    public static final String ARTIFACTS = "artifacts";
    public static final String WAS_DEFINED_FOR_THE_NODE_TYPE = " was defined for the node type ";
    public static final String UNKNOWN = "Unknown ";
    public static final String CAPABILITY_TYPES = "capability_types";
    public static final String GROUPS = "groups";
    public static final String RELATIONSHIP_TEMPLATES = "relationship_templates";
    public static final String OUTPUTS = "outputs";
    public static final String NODE_TEMPLATES = "node_templates";
    public static final String POLICIES = "policies";
    public static final String IMPORTED_FROM = "imported from";
    public static final String MAP = "map";
    public static final String TARGETS = "targets";
    public static final String[] EMPTY_STRING_ARRAY = new String[0];
    private ConstCommon() {}
}