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.volumebeans;
 
  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/volume-request/v1}volume-request" maxOccurs="unbounded" minOccurs="0"/>
 
  54  *   </complexContent>
 
  60 @XmlAccessorType(XmlAccessType.FIELD)
 
  61 @XmlType(name = "", propOrder = {
 
  64 @XmlRootElement(name = "volume-requests")
 
  65 public class VolumeRequests {
 
  67     @XmlElement(name = "volume-request")
 
  68     protected List<VolumeRequest> volumeRequest;
 
  71      * Gets the value of the volumeRequest 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      *    getVolumeRequest().add(newItem);
 
  87      * Objects of the following type(s) are allowed in the list
 
  88      * {@link VolumeRequest }
 
  92     public List<VolumeRequest> getVolumeRequest() {
 
  93         if (volumeRequest == null) {
 
  94             volumeRequest = new ArrayList<VolumeRequest>();
 
  96         return this.volumeRequest;