1
2 package org.miloss.fgsms.services.interfaces.dataaccessservice;
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.XmlSchemaType;
11 import javax.xml.bind.annotation.XmlType;
12 import java.util.Calendar;
13 import org.miloss.fgsms.services.interfaces.common.Header;
14 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
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
56
57
58
59
60 @XmlAccessorType(XmlAccessType.FIELD)
61 @XmlType(name = "GetMessageTransactionLogDetailsResponseMsg", propOrder = {
62 "classification",
63 "action",
64 "identity",
65 "isFault",
66 "isSLAFault",
67 "slaFaultMsg",
68 "monitorHostname",
69 "responseTime",
70 "serviceHostname",
71 "xmlRequestMessage",
72 "xmlResponseMessage",
73 "requestSize",
74 "responseSize",
75 "timestamp",
76 "transactionId",
77 "transactionthreadId",
78 "relatedTransactionID",
79 "headersRequest",
80 "headersResponse",
81 "agentType",
82 "agentMemo",
83 "originalRequestURL",
84 "correctedURL"
85 })
86 public class GetMessageTransactionLogDetailsResponseMsg
87 implements Serializable
88 {
89
90 private final static long serialVersionUID = 1L;
91 @XmlElement(required = true, nillable = true)
92 protected SecurityWrapper classification;
93 @XmlElement(name = "Action", required = true, nillable = true)
94 protected String action;
95 @XmlElement(name = "Identity", required = false, nillable = true)
96 protected List<String> identity;
97 @XmlElement(name = "IsFault")
98 protected boolean isFault;
99 @XmlElement(name = "IsSLAFault")
100 protected boolean isSLAFault;
101 @XmlElement(required = true, nillable = true)
102 protected String slaFaultMsg;
103 @XmlElement(name = "MonitorHostname", required = true, nillable = true)
104 protected String monitorHostname;
105 @XmlElement(name = "ResponseTime")
106 protected long responseTime;
107 @XmlElement(name = "ServiceHostname", required = true, nillable = true)
108 protected String serviceHostname;
109 @XmlElement(name = "XmlRequestMessage", required = false, nillable = true)
110 protected String xmlRequestMessage;
111 @XmlElement(name = "XmlResponseMessage", required = false, nillable = true)
112 protected String xmlResponseMessage;
113 protected long requestSize;
114 protected long responseSize;
115 @XmlElement(required = true)
116 @XmlSchemaType(name = "dateTime")
117 protected Calendar timestamp;
118 @XmlElement(required = true)
119 protected String transactionId;
120 @XmlElement(required = true, nillable = true)
121 protected String transactionthreadId;
122 @XmlElement(required = true, nillable = true)
123 protected String relatedTransactionID;
124 protected List<Header> headersRequest;
125 protected List<Header> headersResponse;
126 @XmlElement(required = true, nillable = true)
127 protected String agentType;
128 @XmlElement(required = true, nillable = true)
129 protected String agentMemo;
130 @XmlElement(name = "OriginalRequestURL", required = false, nillable = true)
131 protected String originalRequestURL;
132 @XmlElement(name = "CorrectedURL", required = false, nillable = true)
133 protected String correctedURL;
134
135
136
137
138
139
140
141
142
143 public SecurityWrapper getClassification() {
144 return classification;
145 }
146
147
148
149
150
151
152
153
154
155 public void setClassification(SecurityWrapper value) {
156 this.classification = value;
157 }
158
159 public boolean isSetClassification() {
160 return (this.classification!= null);
161 }
162
163
164
165
166
167
168
169
170
171 public String getAction() {
172 return action;
173 }
174
175
176
177
178
179
180
181
182
183 public void setAction(String value) {
184 this.action = value;
185 }
186
187 public boolean isSetAction() {
188 return (this.action!= null);
189 }
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213 public List<String> getIdentity() {
214 if (identity == null) {
215 identity = new ArrayList<String>();
216 }
217 return this.identity;
218 }
219
220 public boolean isSetIdentity() {
221 return ((this.identity!= null)&&(!this.identity.isEmpty()));
222 }
223
224 public void unsetIdentity() {
225 this.identity = null;
226 }
227
228
229
230
231
232 public boolean isIsFault() {
233 return isFault;
234 }
235
236
237
238
239
240 public void setIsFault(boolean value) {
241 this.isFault = value;
242 }
243
244 public boolean isSetIsFault() {
245 return true;
246 }
247
248
249
250
251
252 public boolean isIsSLAFault() {
253 return isSLAFault;
254 }
255
256
257
258
259
260 public void setIsSLAFault(boolean value) {
261 this.isSLAFault = value;
262 }
263
264 public boolean isSetIsSLAFault() {
265 return true;
266 }
267
268
269
270
271
272
273
274
275
276 public String getSlaFaultMsg() {
277 return slaFaultMsg;
278 }
279
280
281
282
283
284
285
286
287
288 public void setSlaFaultMsg(String value) {
289 this.slaFaultMsg = value;
290 }
291
292 public boolean isSetSlaFaultMsg() {
293 return (this.slaFaultMsg!= null);
294 }
295
296
297
298
299
300
301
302
303
304 public String getMonitorHostname() {
305 return monitorHostname;
306 }
307
308
309
310
311
312
313
314
315
316 public void setMonitorHostname(String value) {
317 this.monitorHostname = value;
318 }
319
320 public boolean isSetMonitorHostname() {
321 return (this.monitorHostname!= null);
322 }
323
324
325
326
327
328 public long getResponseTime() {
329 return responseTime;
330 }
331
332
333
334
335
336 public void setResponseTime(long value) {
337 this.responseTime = value;
338 }
339
340 public boolean isSetResponseTime() {
341 return true;
342 }
343
344
345
346
347
348
349
350
351
352 public String getServiceHostname() {
353 return serviceHostname;
354 }
355
356
357
358
359
360
361
362
363
364 public void setServiceHostname(String value) {
365 this.serviceHostname = value;
366 }
367
368 public boolean isSetServiceHostname() {
369 return (this.serviceHostname!= null);
370 }
371
372
373
374
375
376
377
378
379
380 public String getXmlRequestMessage() {
381 return xmlRequestMessage;
382 }
383
384
385
386
387
388
389
390
391
392 public void setXmlRequestMessage(String value) {
393 this.xmlRequestMessage = value;
394 }
395
396 public boolean isSetXmlRequestMessage() {
397 return (this.xmlRequestMessage!= null);
398 }
399
400
401
402
403
404
405
406
407
408 public String getXmlResponseMessage() {
409 return xmlResponseMessage;
410 }
411
412
413
414
415
416
417
418
419
420 public void setXmlResponseMessage(String value) {
421 this.xmlResponseMessage = value;
422 }
423
424 public boolean isSetXmlResponseMessage() {
425 return (this.xmlResponseMessage!= null);
426 }
427
428
429
430
431
432 public long getRequestSize() {
433 return requestSize;
434 }
435
436
437
438
439
440 public void setRequestSize(long value) {
441 this.requestSize = value;
442 }
443
444 public boolean isSetRequestSize() {
445 return true;
446 }
447
448
449
450
451
452 public long getResponseSize() {
453 return responseSize;
454 }
455
456
457
458
459
460 public void setResponseSize(long value) {
461 this.responseSize = value;
462 }
463
464 public boolean isSetResponseSize() {
465 return true;
466 }
467
468
469
470
471
472
473
474
475
476 public Calendar getTimestamp() {
477 return timestamp;
478 }
479
480
481
482
483
484
485
486
487
488 public void setTimestamp(Calendar value) {
489 this.timestamp = value;
490 }
491
492 public boolean isSetTimestamp() {
493 return (this.timestamp!= null);
494 }
495
496
497
498
499
500
501
502
503
504 public String getTransactionId() {
505 return transactionId;
506 }
507
508
509
510
511
512
513
514
515
516 public void setTransactionId(String value) {
517 this.transactionId = value;
518 }
519
520 public boolean isSetTransactionId() {
521 return (this.transactionId!= null);
522 }
523
524
525
526
527
528
529
530
531
532 public String getTransactionthreadId() {
533 return transactionthreadId;
534 }
535
536
537
538
539
540
541
542
543
544 public void setTransactionthreadId(String value) {
545 this.transactionthreadId = value;
546 }
547
548 public boolean isSetTransactionthreadId() {
549 return (this.transactionthreadId!= null);
550 }
551
552
553
554
555
556
557
558
559
560 public String getRelatedTransactionID() {
561 return relatedTransactionID;
562 }
563
564
565
566
567
568
569
570
571
572 public void setRelatedTransactionID(String value) {
573 this.relatedTransactionID = value;
574 }
575
576 public boolean isSetRelatedTransactionID() {
577 return (this.relatedTransactionID!= null);
578 }
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602 public List<Header> getHeadersRequest() {
603 if (headersRequest == null) {
604 headersRequest = new ArrayList<Header>();
605 }
606 return this.headersRequest;
607 }
608
609 public boolean isSetHeadersRequest() {
610 return ((this.headersRequest!= null)&&(!this.headersRequest.isEmpty()));
611 }
612
613 public void unsetHeadersRequest() {
614 this.headersRequest = null;
615 }
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639 public List<Header> getHeadersResponse() {
640 if (headersResponse == null) {
641 headersResponse = new ArrayList<Header>();
642 }
643 return this.headersResponse;
644 }
645
646 public boolean isSetHeadersResponse() {
647 return ((this.headersResponse!= null)&&(!this.headersResponse.isEmpty()));
648 }
649
650 public void unsetHeadersResponse() {
651 this.headersResponse = null;
652 }
653
654
655
656
657
658
659
660
661
662 public String getAgentType() {
663 return agentType;
664 }
665
666
667
668
669
670
671
672
673
674 public void setAgentType(String value) {
675 this.agentType = value;
676 }
677
678 public boolean isSetAgentType() {
679 return (this.agentType!= null);
680 }
681
682
683
684
685
686
687
688
689
690 public String getAgentMemo() {
691 return agentMemo;
692 }
693
694
695
696
697
698
699
700
701
702 public void setAgentMemo(String value) {
703 this.agentMemo = value;
704 }
705
706 public boolean isSetAgentMemo() {
707 return (this.agentMemo!= null);
708 }
709
710
711
712
713
714
715
716
717
718 public String getOriginalRequestURL() {
719 return originalRequestURL;
720 }
721
722
723
724
725
726
727
728
729
730 public void setOriginalRequestURL(String value) {
731 this.originalRequestURL = value;
732 }
733
734 public boolean isSetOriginalRequestURL() {
735 return (this.originalRequestURL!= null);
736 }
737
738
739
740
741
742
743
744
745
746 public String getCorrectedURL() {
747 return correctedURL;
748 }
749
750
751
752
753
754
755
756
757
758 public void setCorrectedURL(String value) {
759 this.correctedURL = value;
760 }
761
762 public boolean isSetCorrectedURL() {
763 return (this.correctedURL!= null);
764 }
765
766 }