migrate model-impl from drools-applications
[policy/models.git] / models-interactions / model-impl / aai / src / main / java / org / onap / policy / aai / AaiNqVfModule.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * aai
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 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  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.aai;
23
24 import com.google.gson.annotations.SerializedName;
25 import java.io.Serializable;
26
27 public class AaiNqVfModule implements Serializable {
28     private static final long serialVersionUID = 8019133081429638232L;
29
30     @SerializedName("vf-module-id")
31     private String vfModuleId;
32
33     @SerializedName("vf-module-name")
34     private String vfModuleName;
35
36     @SerializedName("heat-stack-id")
37     private String heatStackId;
38
39     @SerializedName("orchestration-status")
40     private String orchestrationStatus;
41
42     @SerializedName("is-base-vf-module")
43     private Boolean isBaseVfModule;
44
45     @SerializedName("resource-version")
46     private String resourceVersion;
47
48     @SerializedName("persona-model-id")
49     private String personaModelId;
50
51     @SerializedName("persona-model-version")
52     private String personaModelVersion;
53
54     @SerializedName("widget-model-id")
55     private String widgetModelId;
56
57     @SerializedName("widget-model-version")
58     private String widgetModelVersion;
59
60     @SerializedName("contrail-service-instance-fqdn")
61     private String contrailServiceInstanceFqdn;
62
63     @SerializedName("model-invariant-id")
64     private String modelInvariantId;
65
66     @SerializedName("model-version-id")
67     private String modelVersionId;
68
69     @SerializedName("model-customization-id")
70     private String modelCustomizationId = null;
71
72     public String getVfModuleId() {
73         return vfModuleId;
74     }
75
76     public String getVfModuleName() {
77         return vfModuleName;
78     }
79
80     public String getHeatStackId() {
81         return heatStackId;
82     }
83
84     public String getOrchestrationStatus() {
85         return orchestrationStatus;
86     }
87
88     public Boolean getIsBaseVfModule() {
89         return isBaseVfModule;
90     }
91
92     public String getResourceVersion() {
93         return resourceVersion;
94     }
95
96     public String getPersonaModelId() {
97         return personaModelId;
98     }
99
100     public String getPersonaModelVersion() {
101         return personaModelVersion;
102     }
103
104     public String getWidgetModelId() {
105         return widgetModelId;
106     }
107
108     public String getWidgetModelVersion() {
109         return widgetModelVersion;
110     }
111
112     public String getContrailServiceInstanceFqdn() {
113         return contrailServiceInstanceFqdn;
114     }
115
116     public String getModelInvariantId() {
117         return modelInvariantId;
118     }
119
120     public String getModelVersionId() {
121         return modelVersionId;
122     }
123
124     public String getModelCustomizationId() {
125         return modelCustomizationId;
126     }
127
128     public void setVfModuleId(String vfModuleId) {
129         this.vfModuleId = vfModuleId;
130     }
131
132     public void setVfModuleName(String vfModuleName) {
133         this.vfModuleName = vfModuleName;
134     }
135
136     public void setHeatStackId(String heatStackId) {
137         this.heatStackId = heatStackId;
138     }
139
140     public void setOrchestrationStatus(String orchestrationStatus) {
141         this.orchestrationStatus = orchestrationStatus;
142     }
143
144     public void setIsBaseVfModule(Boolean isBaseVfModule) {
145         this.isBaseVfModule = isBaseVfModule;
146     }
147
148     public void setResourceVersion(String resourceVersion) {
149         this.resourceVersion = resourceVersion;
150     }
151
152     public void setPersonaModelId(String personaModelId) {
153         this.personaModelId = personaModelId;
154     }
155
156     public void setPersonaModelVersion(String personaModelVersion) {
157         this.personaModelVersion = personaModelVersion;
158     }
159
160     public void setWidgetModelId(String widgetModelId) {
161         this.widgetModelId = widgetModelId;
162     }
163
164     public void setWidgetModelVersion(String widgetModelVersion) {
165         this.widgetModelVersion = widgetModelVersion;
166     }
167
168     public void setContrailServiceInstanceFqdn(String contrailServiceInstanceFqdn) {
169         this.contrailServiceInstanceFqdn = contrailServiceInstanceFqdn;
170     }
171
172     public void setModelInvariantId(String modelInvariantId) {
173         this.modelInvariantId = modelInvariantId;
174     }
175
176     public void setModelVersionId(String modelVersionId) {
177         this.modelVersionId = modelVersionId;
178     }
179
180     public void setModelCustomizationId(String modelCustomizationId) {
181         this.modelCustomizationId = modelCustomizationId;
182     }
183 }