1
2 package org.miloss.fgsms.services.interfaces.dataaccessservice;
3
4 import java.io.Serializable;
5 import javax.xml.bind.annotation.XmlAccessType;
6 import javax.xml.bind.annotation.XmlAccessorType;
7 import javax.xml.bind.annotation.XmlElement;
8 import javax.xml.bind.annotation.XmlType;
9 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
10
11
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
44
45
46
47
48
49
50
51
52
53
54
55 @XmlAccessorType(XmlAccessType.FIELD)
56 @XmlType(name = "GetRecentMessageLogsRequestMsg", propOrder = {
57 "classification",
58 "url",
59 "monitorhostname",
60 "servicehostname",
61 "agentType",
62 "offset",
63 "records",
64 "faultsOnly",
65 "slaViolationsOnly"
66 })
67 public class GetRecentMessageLogsRequestMsg
68 implements Serializable
69 {
70
71 private final static long serialVersionUID = 1L;
72 @XmlElement(required = true, nillable = true)
73 protected SecurityWrapper classification;
74 @XmlElement(name = "URL", required = false, nillable = true)
75 protected String url;
76 @XmlElement(required = false, nillable = true)
77 protected String monitorhostname;
78 @XmlElement(required = false, nillable = true)
79 protected String servicehostname;
80 @XmlElement(required = false, nillable = true)
81 protected String agentType;
82 protected Integer offset;
83 protected int records;
84 protected boolean faultsOnly;
85 protected boolean slaViolationsOnly;
86
87
88
89
90
91
92
93
94
95 public SecurityWrapper getClassification() {
96 return classification;
97 }
98
99
100
101
102
103
104
105
106
107 public void setClassification(SecurityWrapper value) {
108 this.classification = value;
109 }
110
111 public boolean isSetClassification() {
112 return (this.classification!= null);
113 }
114
115
116
117
118
119
120
121
122
123 public String getURL() {
124 return url;
125 }
126
127
128
129
130
131
132
133
134
135 public void setURL(String value) {
136 this.url = value;
137 }
138
139 public boolean isSetURL() {
140 return (this.url!= null);
141 }
142
143
144
145
146
147
148
149
150
151 public String getMonitorhostname() {
152 return monitorhostname;
153 }
154
155
156
157
158
159
160
161
162
163 public void setMonitorhostname(String value) {
164 this.monitorhostname = value;
165 }
166
167 public boolean isSetMonitorhostname() {
168 return (this.monitorhostname!= null);
169 }
170
171
172
173
174
175
176
177
178
179 public String getServicehostname() {
180 return servicehostname;
181 }
182
183
184
185
186
187
188
189
190
191 public void setServicehostname(String value) {
192 this.servicehostname = value;
193 }
194
195 public boolean isSetServicehostname() {
196 return (this.servicehostname!= null);
197 }
198
199
200
201
202
203
204
205
206
207 public String getAgentType() {
208 return agentType;
209 }
210
211
212
213
214
215
216
217
218
219 public void setAgentType(String value) {
220 this.agentType = value;
221 }
222
223 public boolean isSetAgentType() {
224 return (this.agentType!= null);
225 }
226
227
228
229
230
231
232
233
234
235 public Integer getOffset() {
236 return offset;
237 }
238
239
240
241
242
243
244
245
246
247 public void setOffset(Integer value) {
248 this.offset = value;
249 }
250
251 public boolean isSetOffset() {
252 return (this.offset!= null);
253 }
254
255
256
257
258
259 public int getRecords() {
260 return records;
261 }
262
263
264
265
266
267 public void setRecords(int value) {
268 this.records = value;
269 }
270
271 public boolean isSetRecords() {
272 return true;
273 }
274
275
276
277
278
279 public boolean isFaultsOnly() {
280 return faultsOnly;
281 }
282
283
284
285
286
287 public void setFaultsOnly(boolean value) {
288 this.faultsOnly = value;
289 }
290
291 public boolean isSetFaultsOnly() {
292 return true;
293 }
294
295
296
297
298
299 public boolean isSlaViolationsOnly() {
300 return slaViolationsOnly;
301 }
302
303
304
305
306
307 public void setSlaViolationsOnly(boolean value) {
308 this.slaViolationsOnly = value;
309 }
310
311 public boolean isSetSlaViolationsOnly() {
312 return true;
313 }
314
315 }