Remove annotations in models
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / authorative / concepts / ToscaWithTypeAndObjectProperties.java
1 /*
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
4  * Modifications Copyright (C) 2021 Nordix Foundation.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.tosca.authorative.concepts;
23
24 import com.google.gson.annotations.SerializedName;
25 import java.util.LinkedHashMap;
26 import java.util.Map;
27 import lombok.Data;
28 import lombok.EqualsAndHashCode;
29 import lombok.NoArgsConstructor;
30 import lombok.NonNull;
31 import lombok.ToString;
32
33 /**
34  * Class to represent TOSCA classes containing property maps whose values are generic
35  * Objects.
36  */
37 @Data
38 @EqualsAndHashCode(callSuper = true)
39 @NoArgsConstructor
40 @ToString
41 public class ToscaWithTypeAndObjectProperties extends ToscaEntity {
42     private String type;
43
44     @SerializedName("type_version")
45     private String typeVersion;
46
47     private Map<String, Object> properties;
48
49     /**
50      * Copy constructor.
51      *
52      * @param copyObject object to copy
53      */
54     public ToscaWithTypeAndObjectProperties(@NonNull ToscaWithTypeAndObjectProperties copyObject) {
55         super(copyObject);
56
57         this.type = copyObject.type;
58         this.typeVersion = copyObject.typeVersion;
59
60         if (copyObject.properties != null) {
61             properties = new LinkedHashMap<>(copyObject.properties);
62         }
63     }
64
65     /**
66      * Gets the identifier for this policy.
67      *
68      * @return this policy's identifier
69      */
70     public ToscaConceptIdentifier getIdentifier() {
71         return new ToscaConceptIdentifier(getName(), getVersion());
72     }
73
74     /**
75      * Gets the type identifier for this policy.
76      *
77      * @return this policy's type identifier
78      */
79     public ToscaConceptIdentifier getTypeIdentifier() {
80         return new ToscaConceptIdentifier(getType(), getTypeVersion());
81     }
82 }