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.ExportRecordsEnum;
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "ExportCSVDataRequestMsg", propOrder = {
41 "classification",
42 "urLs",
43 "range",
44 "exportType"
45 })
46 public class ExportCSVDataRequestMsg
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 = "URLs", required = true, nillable = true)
54 protected List<String> urLs;
55 @XmlElement(required = true, nillable = true)
56 protected TimeRangeDiff range;
57 @XmlElement(name = "ExportType", required = true)
58 protected ExportRecordsEnum exportType;
59
60
61
62
63
64
65
66
67
68 public SecurityWrapper getClassification() {
69 return classification;
70 }
71
72
73
74
75
76
77
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110 public List<String> getURLs() {
111 if (urLs == null) {
112 urLs = new ArrayList<String>();
113 }
114 return this.urLs;
115 }
116
117 public boolean isSetURLs() {
118 return ((this.urLs!= null)&&(!this.urLs.isEmpty()));
119 }
120
121 public void unsetURLs() {
122 this.urLs = null;
123 }
124
125
126
127
128
129
130
131
132
133 public TimeRangeDiff getRange() {
134 return range;
135 }
136
137
138
139
140
141
142
143
144
145 public void setRange(TimeRangeDiff value) {
146 this.range = value;
147 }
148
149 public boolean isSetRange() {
150 return (this.range!= null);
151 }
152
153
154
155
156
157
158
159
160
161 public ExportRecordsEnum getExportType() {
162 return exportType;
163 }
164
165
166
167
168
169
170
171
172
173 public void setExportType(ExportRecordsEnum value) {
174 this.exportType = value;
175 }
176
177 public boolean isSetExportType() {
178 return (this.exportType!= null);
179 }
180
181 }