1
2 package org.miloss.fgsms.services.interfaces.dataaccessservice;
3
4 import java.io.Serializable;
5 import java.util.ArrayList;
6 import java.util.List;
7 import javax.xml.bind.annotation.XmlAccessType;
8 import javax.xml.bind.annotation.XmlAccessorType;
9 import javax.xml.bind.annotation.XmlElement;
10 import javax.xml.bind.annotation.XmlType;
11 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
12
13
14 /**
15 * response message
16 *
17 * <p>Java class for GetQuickStatsAllResponseMsg complex type.
18 *
19 * <p>The following schema fragment specifies the expected content contained within this class.
20 *
21 * <pre>
22 * <complexType name="GetQuickStatsAllResponseMsg">
23 * <complexContent>
24 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
25 * <sequence>
26 * <element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
27 * <element name="QuickStatURIWrapper" type="{urn:org:miloss:fgsms:services:interfaces:dataAccessService}QuickStatURIWrapper" maxOccurs="unbounded" minOccurs="0"/>
28 * </sequence>
29 * </restriction>
30 * </complexContent>
31 * </complexType>
32 * </pre>
33 *
34 *
35 */
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "GetQuickStatsAllResponseMsg", propOrder = {
38 "classification",
39 "quickStatURIWrapper"
40 })
41 public class GetQuickStatsAllResponseMsg
42 implements Serializable
43 {
44
45 private final static long serialVersionUID = 1L;
46 @XmlElement(required = true, nillable = true)
47 protected SecurityWrapper classification;
48 @XmlElement(name = "QuickStatURIWrapper")
49 protected List<QuickStatURIWrapper> quickStatURIWrapper;
50
51 /**
52 * Gets the value of the classification property.
53 *
54 * @return
55 * possible object is
56 * {@link SecurityWrapper }
57 *
58 */
59 public SecurityWrapper getClassification() {
60 return classification;
61 }
62
63 /**
64 * Sets the value of the classification property.
65 *
66 * @param value
67 * allowed object is
68 * {@link SecurityWrapper }
69 *
70 */
71 public void setClassification(SecurityWrapper value) {
72 this.classification = value;
73 }
74
75 public boolean isSetClassification() {
76 return (this.classification!= null);
77 }
78
79 /**
80 * Gets the value of the quickStatURIWrapper property.
81 *
82 * <p>
83 * This accessor method returns a reference to the live list,
84 * not a snapshot. Therefore any modification you make to the
85 * returned list will be present inside the JAXB object.
86 * This is why there is not a <CODE>set</CODE> method for the quickStatURIWrapper property.
87 *
88 * <p>
89 * For example, to add a new item, do as follows:
90 * <pre>
91 * getQuickStatURIWrapper().add(newItem);
92 * </pre>
93 *
94 *
95 * <p>
96 * Objects of the following type(s) are allowed in the list
97 * {@link QuickStatURIWrapper }
98 *
99 *
100 */
101 public List<QuickStatURIWrapper> getQuickStatURIWrapper() {
102 if (quickStatURIWrapper == null) {
103 quickStatURIWrapper = new ArrayList<QuickStatURIWrapper>();
104 }
105 return this.quickStatURIWrapper;
106 }
107
108 public boolean isSetQuickStatURIWrapper() {
109 return ((this.quickStatURIWrapper!= null)&&(!this.quickStatURIWrapper.isEmpty()));
110 }
111
112 public void unsetQuickStatURIWrapper() {
113 this.quickStatURIWrapper = null;
114 }
115
116 }