8ab13201c8d708940f2cdf60aa5dee8f6803c21f
[policy/drools-applications.git] / controlloop / common / model-impl / so / src / main / java / org / onap / policy / so / SoModelInfo.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * so
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
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  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.so;
22
23 import com.google.gson.annotations.SerializedName;
24
25 import java.io.Serializable;
26
27 public class SoModelInfo implements Serializable {
28
29     private static final long serialVersionUID = -3283942659786236032L;
30
31     @SerializedName("modelType")
32     private String modelType;
33
34     @SerializedName("modelInvariantId")
35     private String modelInvariantId;
36
37     @SerializedName("modelVersionId")
38     private String modelVersionId;
39
40     @SerializedName("modelName")
41     private String modelName;
42
43     @SerializedName("modelVersion")
44     private String modelVersion;
45
46     @SerializedName("modelCustomizationName")
47     private String modelCustomizationName;
48
49     @SerializedName("modelCustomizationId")
50     private String modelCustomizationId;
51
52     public SoModelInfo() {
53       //required by author
54     }
55
56     public String getModelCustomizationId() {
57         return modelCustomizationId;
58     }
59
60     public String getModelCustomizationName() {
61         return modelCustomizationName;
62     }
63
64     public String getModelInvariantId() {
65         return modelInvariantId;
66     }
67
68     public String getModelName() {
69         return modelName;
70     }
71
72     public String getModelType() {
73         return modelType;
74     }
75
76     public String getModelVersion() {
77         return modelVersion;
78     }
79
80     public String getModelVersionId() {
81         return modelVersionId;
82     }
83
84     public void setModelCustomizationId(String modelCustomizationId) {
85         this.modelCustomizationId = modelCustomizationId;
86     }
87
88     public void setModelCustomizationName(String modelCustomizationName) {
89         this.modelCustomizationName = modelCustomizationName;
90     }
91
92     public void setModelInvariantId(String modelInvariantId) {
93         this.modelInvariantId = modelInvariantId;
94     }
95
96     public void setModelName(String modelName) {
97         this.modelName = modelName;
98     }
99
100     public void setModelType(String modelType) {
101         this.modelType = modelType;
102     }
103
104     public void setModelVersion(String modelVersion) {
105         this.modelVersion = modelVersion;
106     }
107
108     public void setModelVersionId(String modelVersionId) {
109         this.modelVersionId = modelVersionId;
110     }
111
112 }