Replaced all tabs with spaces in java and pom.xml
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / onap / so / apihandlerinfra / vnfbeans / VnfInputs.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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 //
22 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
23 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
24 // Any modifications to this file will be lost upon recompilation of the source schema.
25 // Generated on: 2015.09.03 at 02:02:13 PM EDT
26 //
27
28
29 package org.onap.so.apihandlerinfra.vnfbeans;
30
31
32 import javax.xml.bind.annotation.XmlAccessType;
33 import javax.xml.bind.annotation.XmlAccessorType;
34 import javax.xml.bind.annotation.XmlElement;
35 import javax.xml.bind.annotation.XmlRootElement;
36 import javax.xml.bind.annotation.XmlType;
37
38
39 /**
40  * <p>
41  * Java class for anonymous complex type.
42  * 
43  * <p>
44  * The following schema fragment specifies the expected content contained within this class.
45  * 
46  * <pre>
47  * &lt;complexType>
48  *   &lt;complexContent>
49  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
50  *       &lt;sequence>
51  *         &lt;element name="vnf-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
52  *         &lt;element name="vf-module-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
53  *         &lt;element name="vnf-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
54  *         &lt;element name="vf-module-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
55  *         &lt;element name="vnf-type" type="{http://www.w3.org/2001/XMLSchema}string"/>
56  *         &lt;element name="vf-module-model-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
57  *         &lt;element name="asdc-service-model-version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
58  *         &lt;element name="service-instance-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
59  *         &lt;element name="backout-on-failure" type="{http://www.w3.org/2001/XMLSchema}Boolean"/>
60  *         &lt;choice>
61  *              &lt;element name="service-type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
62  *              &lt;element name="service-id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
63  *         &lt;/choice>
64  *         &lt;choice>
65  *              &lt;element name="aic-node-clli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
66  *          &lt;element name="aic-cloud-region" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
67  *         &lt;/choice>
68  *         &lt;element name="tenant-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
69  *         &lt;element name="prov-status" type="{http://www.w3.org/2001/XMLSchema}string"/>
70  *         &lt;element name="volume-group-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
71  *         &lt;element name="volume-group-id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
72  *         &lt;element name="persona-model-id" type="{http://www.w3.org/2001/XMLSchema}string"/ minOccurs="0">
73  *         &lt;element name="persona-model-version" type="{http://www.w3.org/2001/XMLSchema}string"/ minOccurs="0">
74  *         &lt;element name="is-base-vf-module" type="{http://www.w3.org/2001/XMLSchema}Boolean"/ minOccurs="0">
75  *         &lt;element name="vnf-persona-model-id" type="{http://www.w3.org/2001/XMLSchema}string"/ minOccurs="0">
76  *         &lt;element name="vnf-persona-model-version" type="{http://www.w3.org/2001/XMLSchema}string"/ minOccurs="0">
77  *       &lt;/sequence>
78  *     &lt;/restriction>
79  *   &lt;/complexContent>
80  * &lt;/complexType>
81  * </pre>
82  * 
83  * 
84  */
85 @XmlAccessorType(XmlAccessType.FIELD)
86 @XmlType(name = "",
87         propOrder = {"vnfId", "vfModuleId", "vnfName", "vfModuleName", "vnfType", "vfModuleModelName",
88                 "asdcServiceModelVersion", "serviceInstanceId", "backoutOnFailure", "serviceType", "serviceId",
89                 "aicNodeClli", "aicCloudRegion", "tenantId", "provStatus", "volumeGroupName", "volumeGroupId",
90                 // BEGIN - elements valid only on BPMN interface
91                 "personaModelId", "personaModelVersion", "isBaseVfModule", "vnfPersonaModelId", "vnfPersonaModelVersion"
92         // END - elements valid only on BPMN interface
93         })
94 @XmlRootElement(name = "vnf-inputs")
95 public class VnfInputs {
96
97     @XmlElement(name = "vnf-id")
98     protected String vnfId;
99     @XmlElement(name = "vf-module-id")
100     protected String vfModuleId;
101     @XmlElement(name = "vnf-name")
102     protected String vnfName;
103     @XmlElement(name = "vf-module-name")
104     protected String vfModuleName;
105     @XmlElement(name = "vnf-type")
106     protected String vnfType;
107     @XmlElement(name = "vf-module-model-name")
108     protected String vfModuleModelName;
109     @XmlElement(name = "asdc-service-model-version")
110     protected String asdcServiceModelVersion;
111     @XmlElement(name = "service-instance-id")
112     protected String serviceInstanceId;
113     @XmlElement(name = "backout-on-failure")
114     protected Boolean backoutOnFailure;
115     @XmlElement(name = "service-type")
116     protected String serviceType;
117     @XmlElement(name = "service-id")
118     protected String serviceId;
119     @XmlElement(name = "aic-node-clli")
120     protected String aicNodeClli;
121     @XmlElement(name = "aic-cloud-region")
122     protected String aicCloudRegion;
123     @XmlElement(name = "tenant-id", required = true)
124     protected String tenantId;
125     @XmlElement(name = "prov-status")
126     protected String provStatus;
127     @XmlElement(name = "volume-group-name")
128     protected String volumeGroupName;
129     @XmlElement(name = "volume-group-id")
130     protected String volumeGroupId;
131     @XmlElement(name = "persona-model-id")
132     protected String personaModelId;
133     @XmlElement(name = "persona-model-version")
134     protected String personaModelVersion;
135     @XmlElement(name = "is-base-vf-module")
136     protected Boolean isBaseVfModule;
137     @XmlElement(name = "vnf-persona-model-id")
138     protected String vnfPersonaModelId;
139     @XmlElement(name = "vnf-persona-model-version")
140     protected String vnfPersonaModelVersion;
141
142     /**
143      * Gets the value of the vnfId property.
144      * 
145      * @return possible object is {@link String }
146      * 
147      */
148     public String getVnfId() {
149         return vnfId;
150     }
151
152     /**
153      * Sets the value of the vnfId property.
154      * 
155      * @param value allowed object is {@link String }
156      * 
157      */
158     public void setVnfId(String value) {
159         this.vnfId = value;
160     }
161
162     /**
163      * Gets the value of the vnfName property.
164      * 
165      * @return possible object is {@link String }
166      * 
167      */
168     public String getVnfName() {
169         return vnfName;
170     }
171
172     /**
173      * Sets the value of the vnfName property.
174      * 
175      * @param value allowed object is {@link String }
176      * 
177      */
178     public void setVnfName(String value) {
179         this.vnfName = value;
180     }
181
182     /**
183      * Gets the value of the vnfType property.
184      * 
185      * @return possible object is {@link String }
186      * 
187      */
188     public String getVnfType() {
189         return vnfType;
190     }
191
192     /**
193      * Sets the value of the vnfType property.
194      * 
195      * @param value allowed object is {@link String }
196      * 
197      */
198     public void setVnfType(String value) {
199         this.vnfType = value;
200     }
201
202     /**
203      * Gets the value of the serviceInstanceId property.
204      * 
205      * @return possible object is {@link String }
206      * 
207      */
208     public String getServiceInstanceId() {
209         return serviceInstanceId;
210     }
211
212     /**
213      * Sets the value of the serviceInstanceId property.
214      * 
215      * @param value allowed object is {@link String }
216      * 
217      */
218     public void setServiceInstanceId(String value) {
219         this.serviceInstanceId = value;
220     }
221
222     /**
223      * Gets the value of the serviceType property.
224      * 
225      * @return possible object is {@link String }
226      * 
227      */
228     public String getServiceType() {
229         return serviceType;
230     }
231
232     /**
233      * Sets the value of the serviceType property.
234      * 
235      * @param value allowed object is {@link String }
236      * 
237      */
238     public void setServiceType(String value) {
239         this.serviceType = value;
240     }
241
242     /**
243      * Gets the value of the serviceId property.
244      * 
245      * @return possible object is {@link String }
246      * 
247      */
248     public String getServiceId() {
249         return serviceId;
250     }
251
252     /**
253      * Sets the value of the serviceId property.
254      * 
255      * @param value allowed object is {@link String }
256      * 
257      */
258     public void setServiceId(String value) {
259         this.serviceId = value;
260     }
261
262
263     /**
264      * Gets the value of the aicNodeClli property.
265      * 
266      * @return possible object is {@link String }
267      * 
268      */
269     public String getAicNodeClli() {
270         return aicNodeClli;
271     }
272
273     /**
274      * Sets the value of the aicNodeClli property.
275      * 
276      * @param value allowed object is {@link String }
277      * 
278      */
279     public void setAicNodeClli(String value) {
280         this.aicNodeClli = value;
281     }
282
283     /**
284      * Gets the value of the aicCloudRegion property.
285      * 
286      * @return possible object is {@link String }
287      * 
288      */
289     public String getAicCloudRegion() {
290         return aicCloudRegion;
291     }
292
293     /**
294      * Sets the value of the aicCloudRegion property.
295      * 
296      * @param value allowed object is {@link String }
297      * 
298      */
299     public void setAicCloudRegion(String value) {
300         this.aicCloudRegion = value;
301     }
302
303     /**
304      * Gets the value of the tenantId property.
305      * 
306      * @return possible object is {@link String }
307      * 
308      */
309     public String getTenantId() {
310         return tenantId;
311     }
312
313     /**
314      * Sets the value of the tenantId property.
315      * 
316      * @param value allowed object is {@link String }
317      * 
318      */
319     public void setTenantId(String value) {
320         this.tenantId = value;
321     }
322
323     /**
324      * Gets the value of the provStatus property.
325      * 
326      * @return possible object is {@link String }
327      * 
328      */
329     public String getProvStatus() {
330         return provStatus;
331     }
332
333     /**
334      * Sets the value of the provStatus property.
335      * 
336      * @param value allowed object is {@link String }
337      * 
338      */
339     public void setProvStatus(String value) {
340         this.provStatus = value;
341     }
342
343     /**
344      * Gets the value of the volumeGroupName property.
345      * 
346      * @return possible object is {@link String }
347      * 
348      */
349     public String getVolumeGroupName() {
350         return volumeGroupName;
351     }
352
353     /**
354      * Sets the value of the volumeGroupName property.
355      * 
356      * @param value allowed object is {@link String }
357      * 
358      */
359     public void setVolumeGroupName(String value) {
360         this.volumeGroupName = value;
361     }
362
363     /**
364      * Gets the value of the volumeGroupId property.
365      * 
366      * @return possible object is {@link String }
367      * 
368      */
369     public String getVolumeGroupId() {
370         return volumeGroupId;
371     }
372
373     /**
374      * Sets the value of the volumeGroupId property.
375      * 
376      * @param value allowed object is {@link String }
377      * 
378      */
379     public void setVolumeGroupId(String value) {
380         this.volumeGroupId = value;
381     }
382
383     /**
384      * Gets the value of the vfModuleId property.
385      * 
386      * @return possible object is {@link String }
387      * 
388      */
389     public String getVfModuleId() {
390         return vfModuleId;
391     }
392
393     /**
394      * Sets the value of the vfModuleId property.
395      * 
396      * @param value allowed object is {@link String }
397      * 
398      */
399     public void setVfModuleId(String value) {
400         this.vfModuleId = value;
401     }
402
403     /**
404      * Gets the value of the vfModuleName property.
405      * 
406      * @return possible object is {@link String }
407      * 
408      */
409     public String getVfModuleName() {
410         return vfModuleName;
411     }
412
413     /**
414      * Sets the value of the vfModuleName property.
415      * 
416      * @param value allowed object is {@link String }
417      * 
418      */
419     public void setVfModuleName(String value) {
420         this.vfModuleName = value;
421     }
422
423     /**
424      * Gets the value of the vfModuleModelName property.
425      * 
426      * @return possible object is {@link String }
427      * 
428      */
429     public String getVfModuleModelName() {
430         return vfModuleModelName;
431     }
432
433     /**
434      * Sets the value of the vfModuleModelName property.
435      * 
436      * @param value allowed object is {@link String }
437      * 
438      */
439     public void setVfModuleModelName(String value) {
440         this.vfModuleModelName = value;
441     }
442
443     /**
444      * Gets the value of the asdcServiceModelVersion property.
445      * 
446      * @return possible object is {@link String }
447      * 
448      */
449     public String getAsdcServiceModelVersion() {
450         return asdcServiceModelVersion;
451     }
452
453     /**
454      * Sets the value of the asdcServiceModelVersion property.
455      * 
456      * @param value allowed object is {@link String }
457      * 
458      */
459     public void setAsdcServiceModelVersion(String value) {
460         this.asdcServiceModelVersion = value;
461     }
462
463     /**
464      * Gets the value of the backoutOnFailure property.
465      * 
466      * @return possible object is {@link Boolean }
467      * 
468      */
469     public Boolean getBackoutOnFailure() {
470         return backoutOnFailure;
471     }
472
473     /**
474      * Sets the value of the backoutOnFailure property.
475      * 
476      * @param value allowed object is {@link Boolean }
477      * 
478      */
479     public void setBackoutOnFailure(Boolean value) {
480         this.backoutOnFailure = value;
481     }
482
483     /**
484      * Gets the value of the personaModelId property.
485      * 
486      * @return possible object is {@link String }
487      * 
488      */
489     public String getPersonaModelId() {
490         return personaModelId;
491     }
492
493     /**
494      * Sets the value of the personaModelId property.
495      * 
496      * @param value allowed object is {@link String }
497      * 
498      */
499     public void setPersonaModelId(String value) {
500         this.personaModelId = value;
501     }
502
503     /**
504      * Gets the value of the personaModelVersion property.
505      * 
506      * @return possible object is {@link String }
507      * 
508      */
509     public String getPersonaModelVersion() {
510         return personaModelVersion;
511     }
512
513     /**
514      * Sets the value of the personaModelVersion property.
515      * 
516      * @param value allowed object is {@link String }
517      * 
518      */
519     public void setPersonaModelVersion(String value) {
520         this.personaModelVersion = value;
521     }
522
523
524     /**
525      * Gets the value of the isBaseVfModule property.
526      * 
527      * @return possible object is {@link Boolean }
528      * 
529      */
530     public Boolean getIsBaseVfModule() {
531         return isBaseVfModule;
532     }
533
534     /**
535      * Sets the value of the isBaseVfModule property.
536      * 
537      * @param value allowed object is {@link Boolean }
538      * 
539      */
540     public void setIsBaseVfModule(Boolean value) {
541         this.isBaseVfModule = value;
542     }
543
544     /**
545      * Gets the value of the vnfPersonaModelId property.
546      * 
547      * @return possible object is {@link String }
548      * 
549      */
550     public String getVnfPersonaModelId() {
551         return vnfPersonaModelId;
552     }
553
554     /**
555      * Sets the value of the vnfPersonaModelId property.
556      * 
557      * @param value allowed object is {@link String }
558      * 
559      */
560     public void setVnfPersonaModelId(String value) {
561         this.vnfPersonaModelId = value;
562     }
563
564     /**
565      * Gets the value of the vnfPersonaModelVersion property.
566      * 
567      * @return possible object is {@link String }
568      * 
569      */
570     public String getVnfPersonaModelVersion() {
571         return vnfPersonaModelVersion;
572     }
573
574     /**
575      * Sets the value of the vnfPersonaModelVersion property.
576      * 
577      * @param value allowed object is {@link String }
578      * 
579      */
580     public void setVnfPersonaModelVersion(String value) {
581         this.vnfPersonaModelVersion = value;
582     }
583
584
585 }