1 2 package org.miloss.fgsms.services.interfaces.status; 3 4 import java.util.ArrayList; 5 import java.util.List; 6 import javax.xml.bind.annotation.XmlAccessType; 7 import javax.xml.bind.annotation.XmlAccessorType; 8 import javax.xml.bind.annotation.XmlElement; 9 import javax.xml.bind.annotation.XmlRootElement; 10 import javax.xml.bind.annotation.XmlType; 11 12 13 /** 14 * <p>Java class for anonymous complex type. 15 * 16 * <p>The following schema fragment specifies the expected content contained within this class. 17 * 18 * <pre> 19 * <complexType> 20 * <complexContent> 21 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 22 * <sequence> 23 * <element name="req" type="{urn:org:miloss:fgsms:services:interfaces:status}SetStatusRequestMsg" maxOccurs="unbounded"/> 24 * </sequence> 25 * </restriction> 26 * </complexContent> 27 * </complexType> 28 * </pre> 29 * 30 * 31 */ 32 @XmlAccessorType(XmlAccessType.FIELD) 33 @XmlType(name = "", propOrder = { 34 "req" 35 }) 36 @XmlRootElement(name = "SetMoreStatus") 37 public class SetMoreStatus { 38 39 @XmlElement(required = true, nillable = true) 40 protected List<SetStatusRequestMsg> req; 41 42 /** 43 * Gets the value of the req property. 44 * 45 * <p> 46 * This accessor method returns a reference to the live list, 47 * not a snapshot. Therefore any modification you make to the 48 * returned list will be present inside the JAXB object. 49 * This is why there is not a <CODE>set</CODE> method for the req property. 50 * 51 * <p> 52 * For example, to add a new item, do as follows: 53 * <pre> 54 * getReq().add(newItem); 55 * </pre> 56 * 57 * 58 * <p> 59 * Objects of the following type(s) are allowed in the list 60 * {@link SetStatusRequestMsg } 61 * 62 * 63 */ 64 public List<SetStatusRequestMsg> getReq() { 65 if (req == null) { 66 req = new ArrayList<SetStatusRequestMsg>(); 67 } 68 return this.req; 69 } 70 71 }