Fix import VFC with attributes
[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 import lombok.AllArgsConstructor;
25 import lombok.Getter;
26
27 public class TypeUtils {
28
29     private static final String FIRST_CERTIFIED_VERSION_VERSION = "1.0";
30
31     public static <FieldType> void setField(Map<String, Object> toscaJson, ToscaTagNamesEnum tagName, Consumer<FieldType> setter) {
32         String fieldName = tagName.getElementName();
33         if (toscaJson.containsKey(fieldName)) {
34             FieldType fieldValue = (FieldType) toscaJson.get(fieldName);
35             setter.accept(fieldValue);
36         }
37     }
38
39     public static String getFirstCertifiedVersionVersion() {
40         return FIRST_CERTIFIED_VERSION_VERSION;
41     }
42
43     @Getter
44     @AllArgsConstructor
45     public enum ToscaTagNamesEnum {
46         DERIVED_FROM("derived_from"), IS_PASSWORD("is_password"),
47         // Properties
48         PROPERTIES("properties"), TYPE("type"), STATUS("status"),
49         ENTRY_SCHEMA("entry_schema"), REQUIRED("required"), DESCRIPTION("description"),
50         DEFAULT_VALUE("default"), VALUE("value"), CONSTRAINTS("constraints"),
51         // Group Types
52         MEMBERS("members"), METADATA("metadata"),
53         // Policy Types
54         POLICIES("policies"), TARGETS("targets"),
55         // Capabilities
56         CAPABILITIES("capabilities"), VALID_SOURCE_TYPES("valid_source_types"),
57         // Requirements
58         REQUIREMENTS("requirements"), NODE("node"), RELATIONSHIP("relationship"), CAPABILITY("capability"), INTERFACES("interfaces"),
59         NODE_FILTER("node_filter"), TOSCA_ID("tosca_id"),
60         // Artifacts
61         ARTIFACTS("artifacts"), FILE("file"),
62         // Heat env Validation
63         PARAMETERS("parameters"),
64         // Import Validations
65         TOSCA_VERSION("tosca_definitions_version"), TOPOLOGY_TEMPLATE("topology_template"), OCCURRENCES("occurrences"), NODE_TEMPLATES("node_templates"), GROUPS("groups"), INPUTS("inputs"),
66         SUBSTITUTION_MAPPINGS("substitution_mappings"), NODE_TYPE("node_type"), DIRECTIVES("directives"),
67         // Attributes
68         ATTRIBUTES("attributes"), LABEL("label"), HIDDEN("hidden"), IMMUTABLE("immutable"), ANNOTATIONS("annotations"),
69         VERSION("version"), OPERATIONS("operations"), NOTIFICATIONS("notifications"),
70         //functions
71         GET_INPUT("get_input"),
72         // Definitions
73         DATA_TYPES("data_types"), NODE_TYPES("node_types"), IMPORTS("imports"),
74
75         DERIVED_FROM_NAME("derivedFromName");
76
77         private final String elementName;
78
79     }
80 }