Onboard TOSCA data_types defined in package
[sdc.git] / common-be / src / main / java / org / openecomp / sdc / be / utils / TypeUtils.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.openecomp.sdc.be.utils;
21
22 import java.util.Map;
23 import java.util.function.Consumer;
24
25 public class TypeUtils {
26
27     private static final String FIRST_CERTIFIED_VERSION_VERSION = "1.0";
28
29     public static <FieldType> void setField(Map<String, Object> toscaJson, ToscaTagNamesEnum tagName, Consumer<FieldType> setter) {
30         String fieldName = tagName.getElementName();
31         if (toscaJson.containsKey(fieldName)) {
32             FieldType fieldValue = (FieldType) toscaJson.get(fieldName);
33             setter.accept(fieldValue);
34         }
35     }
36
37     public static String getFirstCertifiedVersionVersion() {
38         return FIRST_CERTIFIED_VERSION_VERSION;
39     }
40
41     public enum ToscaTagNamesEnum {
42         DERIVED_FROM("derived_from"), IS_PASSWORD("is_password"),
43         // Properties
44         PROPERTIES("properties"), TYPE("type"), STATUS("status"), ENTRY_SCHEMA("entry_schema"), REQUIRED("required"), DESCRIPTION("description"), DEFAULT_VALUE("default"), VALUE("value"), CONSTRAINTS("constraints"),
45         // Group Types
46         MEMBERS("members"), METADATA("metadata"),
47         // Policy Types
48         POLICIES("policies"), TARGETS("targets"),
49         // Capabilities
50         CAPABILITIES("capabilities"), VALID_SOURCE_TYPES("valid_source_types"),
51         // Requirements
52         REQUIREMENTS("requirements"), NODE("node"), RELATIONSHIP("relationship"), CAPABILITY("capability"), INTERFACES("interfaces"),
53         NODE_FILTER("node_filter"), TOSCA_ID("tosca_id"),
54         // Artifacts
55         ARTIFACTS("artifacts"), FILE("file"),
56         // Heat env Validation
57         PARAMETERS("parameters"),
58         // Import Validations
59         TOSCA_VERSION("tosca_definitions_version"), TOPOLOGY_TEMPLATE("topology_template"), OCCURRENCES("occurrences"), NODE_TEMPLATES("node_templates"), GROUPS("groups"), INPUTS("inputs"),
60         SUBSTITUTION_MAPPINGS("substitution_mappings"), NODE_TYPE("node_type"), DIRECTIVES("directives"),
61         // Attributes
62         ATTRIBUTES("attributes"), LABEL("label"), HIDDEN("hidden"), IMMUTABLE("immutable"), ANNOTATIONS("annotations"),
63         VERSION("version"), OPERATIONS("operations"), NOTIFICATIONS("notifications"),
64         //functions
65         GET_INPUT("get_input"),
66         // Definitions
67         DATA_TYPES("data_types"), NODE_TYPES("node_types"), IMPORTS("imports");
68
69         private final String elementName;
70
71         ToscaTagNamesEnum(final String elementName) {
72             this.elementName = elementName;
73         }
74
75         public String getElementName() {
76             return elementName;
77         }
78
79     }
80 }