2  * ============LICENSE_START=======================================================
 
   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
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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=========================================================
 
  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 
 
  29 package org.openecomp.mso.apihandlerinfra.networkbeans;
 
  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;
 
  42  * <p>Java class for anonymous complex type.
 
  44  * <p>The following schema fragment specifies the expected content contained within this class.
 
  49  *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 
  51  *         <element ref="{http://ecomp.att.com/mso/infra/network-request/v1}network-request" maxOccurs="unbounded" minOccurs="0"/>
 
  54  *   </complexContent>
 
  60 @XmlAccessorType(XmlAccessType.FIELD)
 
  61 @XmlType(name = "", propOrder = {
 
  64 @XmlRootElement(name = "network-requests")
 
  65 public class NetworkRequests {
 
  67     @XmlElement(name = "network-request")
 
  68     protected List<NetworkRequest> networkRequest;
 
  71      * Gets the value of the networkRequest property.
 
  74      * This accessor method returns a reference to the live list,
 
  75      * not a snapshot. Therefore any modification you make to the
 
  76      * returned list will be present inside the JAXB object.
 
  77      * This is why there is not a <CODE>set</CODE> method for the vnfRequest property.
 
  80      * For example, to add a new item, do as follows:
 
  82      *    getNetworkRequest().add(newItem);
 
  87      * Objects of the following type(s) are allowed in the list
 
  88      * {@link NetworkRequest }
 
  92     public List<NetworkRequest> getNetworkRequest() {
 
  93         if (networkRequest == null) {
 
  94             networkRequest = new ArrayList<NetworkRequest>();
 
  96         return this.networkRequest;