Change the header to SO
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / networkbeans / NetworkInputs.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.openecomp.mso.apihandlerinfra.networkbeans;
30
31 import javax.xml.bind.annotation.XmlAccessType;
32 import javax.xml.bind.annotation.XmlAccessorType;
33 import javax.xml.bind.annotation.XmlElement;
34 import javax.xml.bind.annotation.XmlRootElement;
35 import javax.xml.bind.annotation.XmlType;
36
37
38 /**
39  * <p>Java class for anonymous complex type.
40  * 
41  * <p>The following schema fragment specifies the expected content contained within this class.
42  * 
43  * <pre>
44  * &lt;complexType>
45  *   &lt;complexContent>
46  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
47  *       &lt;sequence>
48  *         &lt;element name="network-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
49  *         &lt;element name="network-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
50  *         &lt;element name="network-type" type="{http://www.w3.org/2001/XMLSchema}string"/>
51  *         &lt;element name="service-instance-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
52  *         &lt;element name="backout-on-failure" type="{http://www.w3.org/2001/XMLSchema}Boolean"/>
53  *         &lt;choice>
54  *              &lt;element name="service-type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
55  *              &lt;element name="service-id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
56  *         &lt;/choice>
57  *         &lt;choice>
58  *              &lt;element name="aic-node-clli" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
59  *          &lt;element name="aic-cloud-region" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
60  *         &lt;/choice>
61  *         &lt;element name="aic-node-clli" type="{http://www.w3.org/2001/XMLSchema}string"/>
62  *         &lt;element name="tenant-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
63  *         &lt;element name="prov-status" type="{http://www.w3.org/2001/XMLSchema}string"/>
64  *       &lt;/sequence>
65  *     &lt;/restriction>
66  *   &lt;/complexContent>
67  * &lt;/complexType>
68  * </pre>
69  * 
70  * 
71  */
72 @XmlAccessorType(XmlAccessType.FIELD)
73 @XmlType(name = "", propOrder = {
74     "networkId",
75     "networkName",
76     "networkType",
77     "serviceInstanceId",
78     "backoutOnFailure",
79     "serviceType",
80     "serviceId",
81     "aicNodeClli",
82     "aicCloudRegion",
83     "tenantId",
84     "provStatus"
85 })
86 @XmlRootElement(name = "network-inputs")
87 public class NetworkInputs {
88
89     @XmlElement(name = "network-id")
90     protected String networkId;
91     @XmlElement(name = "network-name")
92     protected String networkName;
93     @XmlElement(name = "network-type", required = true)
94     protected String networkType;
95     @XmlElement(name = "service-instance-id")
96     protected String serviceInstanceId;
97     @XmlElement(name = "backout-on-failure")
98     protected Boolean backoutOnFailure;
99     @XmlElement(name = "service-type")
100     protected String serviceType;
101     @XmlElement(name = "service-id")
102     protected String serviceId;
103     @XmlElement(name = "aic-node-clli")
104     protected String aicNodeClli;
105     @XmlElement(name = "aic-cloud-region")
106     protected String aicCloudRegion;
107     @XmlElement(name = "tenant-id", required = true)
108     protected String tenantId;
109     @XmlElement(name = "prov-status")
110     protected String provStatus;
111
112     /**
113      * Gets the value of the networkId property.
114      * 
115      * @return
116      *     possible object is
117      *     {@link String }
118      *     
119      */
120     public String getNetworkId() {
121         return networkId;
122     }
123
124     /**
125      * Sets the value of the networkId property.
126      * 
127      * @param value
128      *     allowed object is
129      *     {@link String }
130      *     
131      */
132     public void setNetworkId(String value) {
133         this.networkId = value;
134     }
135
136     /**
137      * Gets the value of the networkName property.
138      * 
139      * @return
140      *     possible object is
141      *     {@link String }
142      *     
143      */
144     public String getNetworkName() {
145         return networkName;
146     }
147
148     /**
149      * Sets the value of the networkName property.
150      * 
151      * @param value
152      *     allowed object is
153      *     {@link String }
154      *     
155      */
156     public void setNetworkName(String value) {
157         this.networkName = value;
158     }
159
160     /**
161      * Gets the value of the networkType property.
162      * 
163      * @return
164      *     possible object is
165      *     {@link String }
166      *     
167      */
168     public String getNetworkType() {
169         return networkType;
170     }
171
172     /**
173      * Sets the value of the networkType property.
174      * 
175      * @param value
176      *     allowed object is
177      *     {@link String }
178      *     
179      */
180     public void setNetworkType(String value) {
181         this.networkType = value;
182     }
183     
184     /**
185      * Gets the value of the serviceInstanceId property.
186      * 
187      * @return
188      *     possible object is
189      *     {@link String }
190      *     
191      */
192     public String getServiceInstanceId() {
193         return serviceInstanceId;
194     }
195
196     /**
197      * Sets the value of the serviceInstanceId property.
198      * 
199      * @param value
200      *     allowed object is
201      *     {@link String }
202      *     
203      */
204     public void setServiceInstanceId(String value) {
205         this.serviceInstanceId = value;
206     }
207
208     /**
209      * Gets the value of the serviceType property.
210      * 
211      * @return
212      *     possible object is
213      *     {@link String }
214      *     
215      */
216     public String getServiceType() {
217         return serviceType;
218     }
219
220     /**
221      * Sets the value of the serviceType property.
222      * 
223      * @param value
224      *     allowed object is
225      *     {@link String }
226      *     
227      */
228     public void setServiceType(String value) {
229         this.serviceType = value;
230     }
231     
232     /**
233      * Gets the value of the serviceId property.
234      * 
235      * @return
236      *     possible object is
237      *     {@link String }
238      *     
239      */
240     public String getServiceId() {
241         return serviceId;
242     }
243
244     /**
245      * Sets the value of the serviceId property.
246      * 
247      * @param value
248      *     allowed object is
249      *     {@link String }
250      *     
251      */
252     public void setServiceId (String value) {
253         this.serviceId = value;
254     }
255
256
257     /**
258      * Gets the value of the aicNodeClli property.
259      * 
260      * @return
261      *     possible object is
262      *     {@link String }
263      *     
264      */
265     public String getAicNodeClli() {
266         return aicNodeClli;
267     }
268
269     /**
270      * Sets the value of the aicNodeClli property.
271      * 
272      * @param value
273      *     allowed object is
274      *     {@link String }
275      *     
276      */
277     public void setAicNodeClli(String value) {
278         this.aicNodeClli = value;
279     }
280     
281     /**
282      * Gets the value of the aicCloudRegion property.
283      * 
284      * @return
285      *     possible object is
286      *     {@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
297      *     allowed object is
298      *     {@link String }
299      *     
300      */
301     public void setAicCloudRegion(String value) {
302         this.aicCloudRegion = value;
303     }
304
305
306     /**
307      * Gets the value of the tenantId property.
308      * 
309      * @return
310      *     possible object is
311      *     {@link String }
312      *     
313      */
314     public String getTenantId() {
315         return tenantId;
316     }
317
318     /**
319      * Sets the value of the tenantId property.
320      * 
321      * @param value
322      *     allowed object is
323      *     {@link String }
324      *     
325      */
326     public void setTenantId(String value) {
327         this.tenantId = value;
328     }
329
330     /**
331      * Gets the value of the provStatus property.
332      * 
333      * @return
334      *     possible object is
335      *     {@link String }
336      *     
337      */
338     public String getProvStatus() {
339         return provStatus;
340     }
341
342     /**
343      * Sets the value of the provStatus property.
344      * 
345      * @param value
346      *     allowed object is
347      *     {@link String }
348      *     
349      */
350     public void setProvStatus(String value) {
351         this.provStatus = value;
352     }
353     
354     /**
355      * Gets the value of the backoutOnFailure property.
356      * 
357      * @return
358      *     possible object is
359      *     {@link Boolean }
360      *     
361      */
362     public Boolean getBackoutOnFailure() {
363         return backoutOnFailure;
364     }
365
366     /**
367      * Sets the value of the backoutOnFailure property.
368      * 
369      * @param value
370      *     allowed object is
371      *     {@link Boolean }
372      *     
373      */
374     public void setBackoutOnFailure(Boolean value) {
375         this.backoutOnFailure = value;
376     }
377
378 }