b3a38050a0bd6e90c3e151f2aeee5b196e15fd41
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / authorative / concepts / ToscaPolicy.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Model
4  * ================================================================================
5  * Copyright (C) 2019, 2021 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 io.swagger.annotations.ApiModelProperty;
28 import lombok.Data;
29 import lombok.EqualsAndHashCode;
30 import lombok.NoArgsConstructor;
31 import lombok.NonNull;
32 import lombok.ToString;
33
34 /**
35  * Class to represent TOSCA policy 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 @ToString(callSuper = true)
43 public class ToscaPolicy extends ToscaWithObjectProperties {
44     private String type;
45
46     @ApiModelProperty(name = "type_version")
47     @SerializedName("type_version")
48     private String typeVersion;
49
50     /**
51      * Copy constructor.
52      *
53      * @param copyObject the obejct to copy from.
54      */
55     public ToscaPolicy(@NonNull ToscaPolicy copyObject) {
56         super(copyObject);
57
58         this.type = copyObject.type;
59         this.typeVersion = copyObject.typeVersion;
60     }
61
62     /**
63      * Gets the identifier for this policy.
64      *
65      * @return this policy's identifier
66      */
67     public ToscaConceptIdentifier getIdentifier() {
68         return new ToscaConceptIdentifier(getName(), getVersion());
69     }
70
71     /**
72      * Gets the type identifier for this policy.
73      *
74      * @return this policy's type identifier
75      */
76     public ToscaConceptIdentifier getTypeIdentifier() {
77         return new ToscaConceptIdentifier(getType(), getTypeVersion());
78     }
79 }