Remove annotations in models
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / authorative / concepts / ToscaTopologyTemplate.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) 2020-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.ArrayList;
28 import java.util.LinkedHashMap;
29 import java.util.List;
30 import java.util.Map;
31 import lombok.Data;
32 import lombok.NoArgsConstructor;
33 import lombok.NonNull;
34
35 /**
36  * Class to represent TOSCA topology template matching input/output from/to client.
37  *
38  * @author Chenfei Gao (cgao@research.att.com)
39  */
40 @Data
41 @NoArgsConstructor
42 public class ToscaTopologyTemplate {
43     private String description;
44
45     private Map<String, ToscaParameter> inputs;
46
47     @SerializedName("node_templates")
48     private Map<String, ToscaNodeTemplate> nodeTemplates;
49
50     private List<Map<String, ToscaPolicy>> policies;
51
52     public Map<ToscaEntityKey, ToscaPolicy> getPoliciesAsMap() {
53         return ToscaEntity.getEntityListMapAsMap(policies);
54     }
55
56     /**
57      * Copy constructor.
58      *
59      * @param copyObject the obejct to copy from.
60      */
61     public ToscaTopologyTemplate(@NonNull ToscaTopologyTemplate copyObject) {
62         this.description = copyObject.description;
63
64         // @formatter:off
65         this.inputs        = (copyObject.inputs        != null ? new LinkedHashMap<>(copyObject.inputs)        : null);
66         this.nodeTemplates = (copyObject.nodeTemplates != null ? new LinkedHashMap<>(copyObject.nodeTemplates) : null);
67         this.policies      = (copyObject.policies      != null ? new ArrayList<>(copyObject.policies)          : null);
68         // @formatter:on
69     }
70 }