1
2 package org.miloss.fgsms.services.interfaces.automatedreportingservice;
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 import org.miloss.fgsms.services.interfaces.reportingservice.ArrayOfReportTypeContainer;
13
14
15 /**
16 * request
17 *
18 * <p>Java class for ExportDataRequestMsg complex type.
19 *
20 * <p>The following schema fragment specifies the expected content contained within this class.
21 *
22 * <pre>
23 * <complexType name="ExportDataRequestMsg">
24 * <complexContent>
25 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26 * <sequence>
27 * <element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
28 * <element name="ReportTypes" type="{urn:org:miloss:fgsms:services:interfaces:reportingService}ArrayOfReportTypeContainer"/>
29 * <element name="URLs" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
30 * <element name="range" type="{urn:org:miloss:fgsms:services:interfaces:automatedReportingService}TimeRangeDiff"/>
31 * </sequence>
32 * </restriction>
33 * </complexContent>
34 * </complexType>
35 * </pre>
36 *
37 *
38 */
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "ExportDataRequestMsg", propOrder = {
41 "classification",
42 "reportTypes",
43 "urLs",
44 "range"
45 })
46 public class ExportDataRequestMsg
47 implements Serializable
48 {
49
50 private final static long serialVersionUID = 1L;
51 @XmlElement(required = true, nillable = true)
52 protected SecurityWrapper classification;
53 @XmlElement(name = "ReportTypes", required = true, nillable = true)
54 protected ArrayOfReportTypeContainer reportTypes;
55 @XmlElement(name = "URLs", required = true, nillable = true)
56 protected List<String> urLs;
57 @XmlElement(required = true, nillable = true)
58 protected TimeRangeDiff range;
59
60 /**
61 * Gets the value of the classification property.
62 *
63 * @return
64 * possible object is
65 * {@link SecurityWrapper }
66 *
67 */
68 public SecurityWrapper getClassification() {
69 return classification;
70 }
71
72 /**
73 * Sets the value of the classification property.
74 *
75 * @param value
76 * allowed object is
77 * {@link SecurityWrapper }
78 *
79 */
80 public void setClassification(SecurityWrapper value) {
81 this.classification = value;
82 }
83
84 public boolean isSetClassification() {
85 return (this.classification!= null);
86 }
87
88 /**
89 * Gets the value of the reportTypes property.
90 *
91 * @return
92 * possible object is
93 * {@link ArrayOfReportTypeContainer }
94 *
95 */
96 public ArrayOfReportTypeContainer getReportTypes() {
97 return reportTypes;
98 }
99
100 /**
101 * Sets the value of the reportTypes property.
102 *
103 * @param value
104 * allowed object is
105 * {@link ArrayOfReportTypeContainer }
106 *
107 */
108 public void setReportTypes(ArrayOfReportTypeContainer value) {
109 this.reportTypes = value;
110 }
111
112 public boolean isSetReportTypes() {
113 return (this.reportTypes!= null);
114 }
115
116 /**
117 * Gets the value of the urLs property.
118 *
119 * <p>
120 * This accessor method returns a reference to the live list,
121 * not a snapshot. Therefore any modification you make to the
122 * returned list will be present inside the JAXB object.
123 * This is why there is not a <CODE>set</CODE> method for the urLs property.
124 *
125 * <p>
126 * For example, to add a new item, do as follows:
127 * <pre>
128 * getURLs().add(newItem);
129 * </pre>
130 *
131 *
132 * <p>
133 * Objects of the following type(s) are allowed in the list
134 * {@link String }
135 *
136 *
137 */
138 public List<String> getURLs() {
139 if (urLs == null) {
140 urLs = new ArrayList<String>();
141 }
142 return this.urLs;
143 }
144
145 public boolean isSetURLs() {
146 return ((this.urLs!= null)&&(!this.urLs.isEmpty()));
147 }
148
149 public void unsetURLs() {
150 this.urLs = null;
151 }
152
153 /**
154 * Gets the value of the range property.
155 *
156 * @return
157 * possible object is
158 * {@link TimeRangeDiff }
159 *
160 */
161 public TimeRangeDiff getRange() {
162 return range;
163 }
164
165 /**
166 * Sets the value of the range property.
167 *
168 * @param value
169 * allowed object is
170 * {@link TimeRangeDiff }
171 *
172 */
173 public void setRange(TimeRangeDiff value) {
174 this.range = value;
175 }
176
177 public boolean isSetRange() {
178 return (this.range!= null);
179 }
180
181 }