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 / VnfRequests.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 java.util.ArrayList;
33 import java.util.List;
34 import javax.xml.bind.annotation.XmlAccessType;
35 import javax.xml.bind.annotation.XmlAccessorType;
36 import javax.xml.bind.annotation.XmlElement;
37 import javax.xml.bind.annotation.XmlRootElement;
38 import javax.xml.bind.annotation.XmlType;
39
40
41 /**
42  * <p>
43  * Java class for anonymous complex type.
44  * 
45  * <p>
46  * The following schema fragment specifies the expected content contained within this class.
47  * 
48  * <pre>
49  * &lt;complexType>
50  *   &lt;complexContent>
51  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
52  *       &lt;sequence>
53  *         &lt;element ref="{http://org.onap/so/infra/vnf-request/v1}vnf-request" maxOccurs="unbounded" minOccurs="0"/>
54  *       &lt;/sequence>
55  *     &lt;/restriction>
56  *   &lt;/complexContent>
57  * &lt;/complexType>
58  * </pre>
59  * 
60  * 
61  */
62 @XmlAccessorType(XmlAccessType.FIELD)
63 @XmlType(name = "", propOrder = {"vnfRequest"})
64 @XmlRootElement(name = "vnf-requests")
65 public class VnfRequests {
66
67     @XmlElement(name = "vnf-request")
68     protected List<VnfRequest> vnfRequest;
69
70     /**
71      * Gets the value of the vnfRequest property.
72      * 
73      * <p>
74      * This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to
75      * the returned list will be present inside the JAXB object. This is why there is not a <CODE>set</CODE> method for
76      * the vnfRequest property.
77      * 
78      * <p>
79      * For example, to add a new item, do as follows:
80      * 
81      * <pre>
82      * getVnfRequest().add(newItem);
83      * </pre>
84      * 
85      * 
86      * <p>
87      * Objects of the following type(s) are allowed in the list {@link VnfRequest }
88      * 
89      * 
90      */
91     public List<VnfRequest> getVnfRequest() {
92         if (vnfRequest == null) {
93             vnfRequest = new ArrayList<>();
94         }
95         return this.vnfRequest;
96     }
97
98     public void setVnfRequest(List<VnfRequest> vnfRequest) {
99         this.vnfRequest = vnfRequest;
100     }
101 }