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