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="GetStatusResponseResult" type="{urn:org:miloss:fgsms:services:interfaces:status}GetStatusResponseMsg" maxOccurs="unbounded"/> 24 * </sequence> 25 * </restriction> 26 * </complexContent> 27 * </complexType> 28 * </pre> 29 * 30 * 31 */ 32 @XmlAccessorType(XmlAccessType.FIELD) 33 @XmlType(name = "", propOrder = { 34 "getStatusResponseResult" 35 }) 36 @XmlRootElement(name = "GetAllStatusResponse") 37 public class GetAllStatusResponse { 38 39 @XmlElement(name = "GetStatusResponseResult", required = false, nillable = true) 40 protected List<GetStatusResponseMsg> getStatusResponseResult; 41 42 /** 43 * Gets the value of the getStatusResponseResult 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 getStatusResponseResult property. 50 * 51 * <p> 52 * For example, to add a new item, do as follows: 53 * <pre> 54 * getGetStatusResponseResult().add(newItem); 55 * </pre> 56 * 57 * 58 * <p> 59 * Objects of the following type(s) are allowed in the list 60 * {@link GetStatusResponseMsg } 61 * 62 * 63 */ 64 public List<GetStatusResponseMsg> getGetStatusResponseResult() { 65 if (getStatusResponseResult == null) { 66 getStatusResponseResult = new ArrayList<GetStatusResponseMsg>(); 67 } 68 return this.getStatusResponseResult; 69 } 70 71 }