1
2 package org.miloss.fgsms.services.interfaces.status;
3
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlSchemaType;
8 import javax.xml.bind.annotation.XmlType;
9 import java.util.Calendar;
10 import org.miloss.fgsms.services.interfaces.common.NameValuePairSet;
11 import org.miloss.fgsms.services.interfaces.common.PolicyType;
12 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
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
40
41
42
43
44
45 @XmlAccessorType(XmlAccessType.FIELD)
46 @XmlType(name = "SetExtendedStatusRequestMsg", propOrder = {
47 "classification",
48 "operational",
49 "uri",
50 "message",
51 "hostname",
52 "domainName",
53 "timeStamp",
54 "policyType",
55 "parentObject",
56 "data"
57 })
58 public class SetExtendedStatusRequestMsg {
59
60 @XmlElement(required = true, nillable = true)
61 protected SecurityWrapper classification;
62 @XmlElement(name = "Operational")
63 protected boolean operational;
64 @XmlElement(name = "URI", required = true, nillable = true)
65 protected String uri;
66 @XmlElement(name = "Message", required = true, nillable = true)
67 protected String message;
68 @XmlElement(name = "Hostname", required = true, nillable = true)
69 protected String hostname;
70 @XmlElement(name = "DomainName", required = true, nillable = true)
71 protected String domainName;
72 @XmlElement(name = "TimeStamp", required = true)
73 @XmlSchemaType(name = "dateTime")
74 protected Calendar timeStamp;
75 @XmlElement(name = "PolicyType", required = true, defaultValue = "Status", nillable = true)
76 protected PolicyType policyType;
77 @XmlElement(name = "ParentObject", required = false)
78 protected String parentObject;
79 @XmlElement(name = "Data", required = false)
80 protected NameValuePairSet data;
81
82
83
84
85
86
87
88
89
90 public SecurityWrapper getClassification() {
91 return classification;
92 }
93
94
95
96
97
98
99
100
101
102 public void setClassification(SecurityWrapper value) {
103 this.classification = value;
104 }
105
106
107
108
109
110 public boolean isOperational() {
111 return operational;
112 }
113
114
115
116
117
118 public void setOperational(boolean value) {
119 this.operational = value;
120 }
121
122
123
124
125
126
127
128
129
130 public String getURI() {
131 return uri;
132 }
133
134
135
136
137
138
139
140
141
142 public void setURI(String value) {
143 this.uri = value;
144 }
145
146
147
148
149
150
151
152
153
154 public String getMessage() {
155 return message;
156 }
157
158
159
160
161
162
163
164
165
166 public void setMessage(String value) {
167 this.message = value;
168 }
169
170
171
172
173
174
175
176
177
178 public String getHostname() {
179 return hostname;
180 }
181
182
183
184
185
186
187
188
189
190 public void setHostname(String value) {
191 this.hostname = value;
192 }
193
194
195
196
197
198
199
200
201
202 public String getDomainName() {
203 return domainName;
204 }
205
206
207
208
209
210
211
212
213
214 public void setDomainName(String value) {
215 this.domainName = value;
216 }
217
218
219
220
221
222
223
224
225
226 public Calendar getTimeStamp() {
227 return timeStamp;
228 }
229
230
231
232
233
234
235
236
237
238 public void setTimeStamp(Calendar value) {
239 this.timeStamp = value;
240 }
241
242
243
244
245
246
247
248
249
250 public PolicyType getPolicyType() {
251 return policyType;
252 }
253
254
255
256
257
258
259
260
261
262 public void setPolicyType(PolicyType value) {
263 this.policyType = value;
264 }
265
266
267
268
269
270
271
272
273
274 public String getParentObject() {
275 return parentObject;
276 }
277
278
279
280
281
282
283
284
285
286 public void setParentObject(String value) {
287 this.parentObject = value;
288 }
289
290
291
292
293
294
295
296
297
298 public NameValuePairSet getData() {
299 return data;
300 }
301
302
303
304
305
306
307
308
309
310 public void setData(NameValuePairSet value) {
311 this.data = value;
312 }
313
314 }