Remove annotations in models
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / authorative / concepts / ToscaServiceTemplate.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Model
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019-2021 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  * SPDX-License-Identifier: Apache-2.0
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.policy.models.tosca.authorative.concepts;
25
26 import com.google.gson.annotations.SerializedName;
27 import java.util.LinkedHashMap;
28 import java.util.Map;
29 import lombok.Data;
30 import lombok.EqualsAndHashCode;
31 import lombok.NoArgsConstructor;
32 import lombok.NonNull;
33
34 /**
35  * Class to represent TOSCA service template matching input/output from/to client.
36  *
37  * @author Chenfei Gao (cgao@research.att.com)
38  */
39 @Data
40 @EqualsAndHashCode(callSuper = true)
41 @NoArgsConstructor
42 public class ToscaServiceTemplate extends ToscaEntity {
43     @SerializedName("tosca_definitions_version")
44     private String toscaDefinitionsVersion;
45
46     @SerializedName("data_types")
47     private Map<String, ToscaDataType> dataTypes;
48
49     @SerializedName("capability_types")
50     private Map<String, ToscaCapabilityType> capabilityTypes;
51
52     @SerializedName("node_types")
53     private Map<String, ToscaNodeType> nodeTypes;
54
55     @SerializedName("relationship_types")
56     private Map<String, ToscaRelationshipType> relationshipTypes;
57
58     @SerializedName("policy_types")
59     private Map<String, ToscaPolicyType> policyTypes;
60
61     @SerializedName("topology_template")
62     private ToscaTopologyTemplate toscaTopologyTemplate;
63
64     public Map<ToscaEntityKey, ToscaDataType> getDataTypesAsMap() {
65         return ToscaEntity.getEntityMapAsMap(dataTypes);
66     }
67
68     public Map<ToscaEntityKey, ToscaPolicyType> getPolicyTypesAsMap() {
69         return ToscaEntity.getEntityMapAsMap(policyTypes);
70     }
71
72     /**
73      * Copy constructor.
74      *
75      * @param copyObject the obejct to copy from.
76      */
77     public ToscaServiceTemplate(@NonNull ToscaServiceTemplate copyObject) {
78         super(copyObject);
79
80         this.toscaDefinitionsVersion = copyObject.toscaDefinitionsVersion;
81
82         // @formatter:off
83         this.dataTypes         = (copyObject.dataTypes         != null
84                 ? new LinkedHashMap<>(copyObject.dataTypes)
85                 : null);
86         this.capabilityTypes   = (copyObject.capabilityTypes   != null
87                 ? new LinkedHashMap<>(copyObject.capabilityTypes)
88                 : null);
89         this.nodeTypes         = (copyObject.nodeTypes         != null
90                 ? new LinkedHashMap<>(copyObject.nodeTypes)
91                 : null);
92         this.relationshipTypes = (copyObject.relationshipTypes != null
93                 ? new LinkedHashMap<>(copyObject.relationshipTypes)
94                 : null);
95         this.policyTypes       = (copyObject.policyTypes       != null
96                 ? new LinkedHashMap<>(copyObject.policyTypes)
97                 : null);
98         // @formatter:on
99
100         this.toscaTopologyTemplate =
101                 (copyObject.toscaTopologyTemplate != null ? new ToscaTopologyTemplate(copyObject.toscaTopologyTemplate)
102                         : null);
103     }
104 }