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