Fix breakage from ToscaPolicy refactoring
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / authorative / concepts / ToscaEntity.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Model
4  * ================================================================================
5  * Copyright (C) 2019 Nordix Foundation.
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  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.models.tosca.authorative.concepts;
24
25 import com.google.gson.annotations.SerializedName;
26
27 import java.util.LinkedHashMap;
28 import java.util.Map;
29 import java.util.Map.Entry;
30
31 import lombok.Data;
32 import lombok.NoArgsConstructor;
33 import lombok.NonNull;
34
35 import org.onap.policy.models.base.PfNameVersion;
36
37 /**
38  * Class to represent TOSCA data type matching input/output from/to client.
39  *
40  * @author Chenfei Gao (cgao@research.att.com)
41  */
42 @Data
43 @NoArgsConstructor
44 public class ToscaEntity implements PfNameVersion {
45     private String name;
46
47     private String version;
48
49     @SerializedName("derived_from")
50     private String derivedFrom;
51
52     private Map<String, String> metadata;
53
54     private String description;
55
56     /**
57      * Copy COnstructor.
58      *
59      * @param copyObject object to copy from
60      */
61     public ToscaEntity(@NonNull ToscaEntity copyObject) {
62         this.name = copyObject.name;
63         this.version = copyObject.version;
64         this.derivedFrom = copyObject.derivedFrom;
65         this.description = copyObject.description;
66
67         if (copyObject.metadata != null) {
68             metadata = new LinkedHashMap<>();
69             for (final Entry<String, String> metadataEntry : copyObject.metadata.entrySet()) {
70                 metadata.put(metadataEntry.getKey(), metadataEntry.getValue());
71             }
72         }
73     }
74
75 }