Add template and tosca model entities and repositories
[clamp.git] / src / main / java / org / onap / clamp / loop / template / PolicyModelId.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights
6  *                             reserved.
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  * ============LICENSE_END============================================
20  * ===================================================================
21  *
22  */
23
24 package org.onap.clamp.loop.template;
25
26 import com.google.gson.annotations.Expose;
27
28 import java.io.Serializable;
29
30 public class PolicyModelId implements Serializable {
31
32     /**
33      * Serial Id.
34      */
35     private static final long serialVersionUID = -2846526482064334745L;
36
37     @Expose
38     private String policyModelType;
39
40     @Expose
41     private String version;
42
43     /**
44      * Default constructor for serialization.
45      */
46     public PolicyModelId() {
47
48     }
49
50     /**
51      * Constructor.
52      */
53     public PolicyModelId(String policyModelType, String version) {
54         this.policyModelType = policyModelType;
55         this.version = version;
56     }
57
58     /**
59      * policyModelType getter.
60      * 
61      * @return the policyModelType
62      */
63     public String getPolicyModelType() {
64         return policyModelType;
65     }
66
67     /**
68      * policyModelType setter.
69      * 
70      * @param policyModelType the policyModelType to set
71      */
72     public void setPolicyModelType(String policyModelType) {
73         this.policyModelType = policyModelType;
74     }
75
76     /**
77      * version getter.
78      * 
79      * @return the version
80      */
81     public String getVersion() {
82         return version;
83     }
84
85     /**
86      * version setter.
87      * 
88      * @param version the version to set
89      */
90     public void setVersion(String version) {
91         this.version = version;
92     }
93 }