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