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.XmlRootElement;
11 import javax.xml.bind.annotation.XmlType;
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "", propOrder = {
35 "getAlertsResponse"
36 })
37 @XmlRootElement(name = "GetAlertsResponse")
38 public class GetAlertsResponse
39 implements Serializable
40 {
41
42 private final static long serialVersionUID = 1L;
43 @XmlElement(name = "GetAlertsResponse")
44 protected List<GetAlertsResponseMsg> getAlertsResponse;
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68 public List<GetAlertsResponseMsg> getGetAlertsResponse() {
69 if (getAlertsResponse == null) {
70 getAlertsResponse = new ArrayList<GetAlertsResponseMsg>();
71 }
72 return this.getAlertsResponse;
73 }
74
75 public boolean isSetGetAlertsResponse() {
76 return ((this.getAlertsResponse!= null)&&(!this.getAlertsResponse.isEmpty()));
77 }
78
79 public void unsetGetAlertsResponse() {
80 this.getAlertsResponse = null;
81 }
82
83 }