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.XmlSchemaType;
9 import javax.xml.bind.annotation.XmlType;
10 import java.util.Calendar;
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 @XmlAccessorType(XmlAccessType.FIELD)
48 @XmlType(name = "queueORtopicDetails", propOrder = {
49 "name",
50 "itemtype",
51 "messagecount",
52 "consumercount",
53 "recievedmessagecount",
54 "activeconsumercount",
55 "bytesin",
56 "bytesout",
57 "bytesdropped",
58 "messagesdropped",
59 "queueDepth",
60 "agenttype",
61 "canonicalname",
62 "timestamp"
63 })
64 public class QueueORtopicDetails
65 implements Serializable
66 {
67
68 private final static long serialVersionUID = 1L;
69 @XmlElement(required = true)
70 protected String name;
71 @XmlElement(required = true, nillable = true)
72 protected String itemtype;
73 @XmlElement(required = true, type = Long.class, nillable = true)
74 protected Long messagecount;
75 @XmlElement(required = true, type = Long.class, nillable = true)
76 protected Long consumercount;
77 @XmlElement(required = true, type = Long.class, nillable = true)
78 protected Long recievedmessagecount;
79 @XmlElement(required = true, type = Long.class, nillable = true)
80 protected Long activeconsumercount;
81 @XmlElement(required = true, type = Long.class, nillable = true)
82 protected Long bytesin;
83 @XmlElement(required = true, type = Long.class, nillable = true)
84 protected Long bytesout;
85 @XmlElement(required = true, type = Long.class, nillable = true)
86 protected Long bytesdropped;
87 @XmlElement(required = true, type = Long.class, nillable = true)
88 protected Long messagesdropped;
89 @XmlElement(name = "queue_depth", required = true, type = Long.class, nillable = true)
90 protected Long queueDepth;
91 @XmlElement(required = true, nillable = true)
92 protected String agenttype;
93 @XmlElement(required = true, nillable = true)
94 protected String canonicalname;
95 @XmlElement(required = true)
96 @XmlSchemaType(name = "dateTime")
97 protected Calendar timestamp;
98
99
100
101
102
103
104
105
106
107 public String getName() {
108 return name;
109 }
110
111
112
113
114
115
116
117
118
119 public void setName(String value) {
120 this.name = value;
121 }
122
123 public boolean isSetName() {
124 return (this.name!= null);
125 }
126
127
128
129
130
131
132
133
134
135 public String getItemtype() {
136 return itemtype;
137 }
138
139
140
141
142
143
144
145
146
147 public void setItemtype(String value) {
148 this.itemtype = value;
149 }
150
151 public boolean isSetItemtype() {
152 return (this.itemtype!= null);
153 }
154
155
156
157
158
159
160
161
162
163 public Long getMessagecount() {
164 return messagecount;
165 }
166
167
168
169
170
171
172
173
174
175 public void setMessagecount(Long value) {
176 this.messagecount = value;
177 }
178
179 public boolean isSetMessagecount() {
180 return (this.messagecount!= null);
181 }
182
183
184
185
186
187
188
189
190
191 public Long getConsumercount() {
192 return consumercount;
193 }
194
195
196
197
198
199
200
201
202
203 public void setConsumercount(Long value) {
204 this.consumercount = value;
205 }
206
207 public boolean isSetConsumercount() {
208 return (this.consumercount!= null);
209 }
210
211
212
213
214
215
216
217
218
219 public Long getRecievedmessagecount() {
220 return recievedmessagecount;
221 }
222
223
224
225
226
227
228
229
230
231 public void setRecievedmessagecount(Long value) {
232 this.recievedmessagecount = value;
233 }
234
235 public boolean isSetRecievedmessagecount() {
236 return (this.recievedmessagecount!= null);
237 }
238
239
240
241
242
243
244
245
246
247 public Long getActiveconsumercount() {
248 return activeconsumercount;
249 }
250
251
252
253
254
255
256
257
258
259 public void setActiveconsumercount(Long value) {
260 this.activeconsumercount = value;
261 }
262
263 public boolean isSetActiveconsumercount() {
264 return (this.activeconsumercount!= null);
265 }
266
267
268
269
270
271
272
273
274
275 public Long getBytesin() {
276 return bytesin;
277 }
278
279
280
281
282
283
284
285
286
287 public void setBytesin(Long value) {
288 this.bytesin = value;
289 }
290
291 public boolean isSetBytesin() {
292 return (this.bytesin!= null);
293 }
294
295
296
297
298
299
300
301
302
303 public Long getBytesout() {
304 return bytesout;
305 }
306
307
308
309
310
311
312
313
314
315 public void setBytesout(Long value) {
316 this.bytesout = value;
317 }
318
319 public boolean isSetBytesout() {
320 return (this.bytesout!= null);
321 }
322
323
324
325
326
327
328
329
330
331 public Long getBytesdropped() {
332 return bytesdropped;
333 }
334
335
336
337
338
339
340
341
342
343 public void setBytesdropped(Long value) {
344 this.bytesdropped = value;
345 }
346
347 public boolean isSetBytesdropped() {
348 return (this.bytesdropped!= null);
349 }
350
351
352
353
354
355
356
357
358
359 public Long getMessagesdropped() {
360 return messagesdropped;
361 }
362
363
364
365
366
367
368
369
370
371 public void setMessagesdropped(Long value) {
372 this.messagesdropped = value;
373 }
374
375 public boolean isSetMessagesdropped() {
376 return (this.messagesdropped!= null);
377 }
378
379
380
381
382
383
384
385
386
387 public Long getQueueDepth() {
388 return queueDepth;
389 }
390
391
392
393
394
395
396
397
398
399 public void setQueueDepth(Long value) {
400 this.queueDepth = value;
401 }
402
403 public boolean isSetQueueDepth() {
404 return (this.queueDepth!= null);
405 }
406
407
408
409
410
411
412
413
414
415 public String getAgenttype() {
416 return agenttype;
417 }
418
419
420
421
422
423
424
425
426
427 public void setAgenttype(String value) {
428 this.agenttype = value;
429 }
430
431 public boolean isSetAgenttype() {
432 return (this.agenttype!= null);
433 }
434
435
436
437
438
439
440
441
442
443 public String getCanonicalname() {
444 return canonicalname;
445 }
446
447
448
449
450
451
452
453
454
455 public void setCanonicalname(String value) {
456 this.canonicalname = value;
457 }
458
459 public boolean isSetCanonicalname() {
460 return (this.canonicalname!= null);
461 }
462
463
464
465
466
467
468
469
470
471 public Calendar getTimestamp() {
472 return timestamp;
473 }
474
475
476
477
478
479
480
481
482
483 public void setTimestamp(Calendar value) {
484 this.timestamp = value;
485 }
486
487 public boolean isSetTimestamp() {
488 return (this.timestamp!= null);
489 }
490
491 }