Merge "Add timeout to SO to wait for success"
[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 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
25 import java.io.Serializable;
26
27 public class AaiNqVfModule implements Serializable {
28     private static final long serialVersionUID = 8019133081429638231L;
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     public String getVfModuleId() {
70         return vfModuleId;
71     }
72
73     public String getVfModuleName() {
74         return vfModuleName;
75     }
76
77     public String getHeatStackId() {
78         return heatStackId;
79     }
80
81     public String getOrchestrationStatus() {
82         return orchestrationStatus;
83     }
84
85     public Boolean getIsBaseVfModule() {
86         return isBaseVfModule;
87     }
88
89     public String getResourceVersion() {
90         return resourceVersion;
91     }
92
93     public String getPersonaModelId() {
94         return personaModelId;
95     }
96
97     public String getPersonaModelVersion() {
98         return personaModelVersion;
99     }
100
101     public String getWidgetModelId() {
102         return widgetModelId;
103     }
104
105     public String getWidgetModelVersion() {
106         return widgetModelVersion;
107     }
108
109     public String getContrailServiceInstanceFqdn() {
110         return contrailServiceInstanceFqdn;
111     }
112
113     public String getModelInvariantId() {
114         return modelInvariantId;
115     }
116
117     public String getModelVersionId() {
118         return modelVersionId;
119     }
120
121     public void setVfModuleId(String vfModuleId) {
122         this.vfModuleId = vfModuleId;
123     }
124
125     public void setVfModuleName(String vfModuleName) {
126         this.vfModuleName = vfModuleName;
127     }
128
129     public void setHeatStackId(String heatStackId) {
130         this.heatStackId = heatStackId;
131     }
132
133     public void setOrchestrationStatus(String orchestrationStatus) {
134         this.orchestrationStatus = orchestrationStatus;
135     }
136
137     public void setIsBaseVfModule(Boolean isBaseVfModule) {
138         this.isBaseVfModule = isBaseVfModule;
139     }
140
141     public void setResourceVersion(String resourceVersion) {
142         this.resourceVersion = resourceVersion;
143     }
144
145     public void setPersonaModelId(String personaModelId) {
146         this.personaModelId = personaModelId;
147     }
148
149     public void setPersonaModelVersion(String personaModelVersion) {
150         this.personaModelVersion = personaModelVersion;
151     }
152
153     public void setWidgetModelId(String widgetModelId) {
154         this.widgetModelId = widgetModelId;
155     }
156
157     public void setWidgetModelVersion(String widgetModelVersion) {
158         this.widgetModelVersion = widgetModelVersion;
159     }
160
161     public void setContrailServiceInstanceFqdn(String contrailServiceInstanceFqdn) {
162         this.contrailServiceInstanceFqdn = contrailServiceInstanceFqdn;
163     }
164
165     public void setModelInvariantId(String modelInvariantId) {
166         this.modelInvariantId = modelInvariantId;
167     }
168
169     public void setModelVersionId(String modelVersionId) {
170         this.modelVersionId = modelVersionId;
171     }
172 }