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 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
12
13
14 /**
15 * SLA Fault records
16 *
17 * <p>Java class for GetSLAFaultRecordsResponseMsg complex type.
18 *
19 * <p>The following schema fragment specifies the expected content contained within this class.
20 *
21 * <pre>
22 * <complexType name="GetSLAFaultRecordsResponseMsg">
23 * <complexContent>
24 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
25 * <sequence>
26 * <element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
27 * <element name="message" type="{http://www.w3.org/2001/XMLSchema}string"/>
28 * <element name="Timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
29 * <element name="RelatedTransaction" type="{http://www.w3.org/2001/XMLSchema}string"/>
30 * <element name="IncidentID" type="{http://www.w3.org/2001/XMLSchema}string"/>
31 * </sequence>
32 * </restriction>
33 * </complexContent>
34 * </complexType>
35 * </pre>
36 *
37 *
38 */
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "GetSLAFaultRecordsResponseMsg", propOrder = {
41 "classification",
42 "message",
43 "timestamp",
44 "relatedTransaction",
45 "incidentID"
46 })
47 public class GetSLAFaultRecordsResponseMsg
48 implements Serializable
49 {
50
51 private final static long serialVersionUID = 1L;
52 @XmlElement(required = true, nillable = true)
53 protected SecurityWrapper classification;
54 @XmlElement(required = true)
55 protected String message;
56 @XmlElement(name = "Timestamp", required = true)
57 @XmlSchemaType(name = "dateTime")
58 protected Calendar timestamp;
59 @XmlElement(name = "RelatedTransaction", required = true)
60 protected String relatedTransaction;
61 @XmlElement(name = "IncidentID", required = true)
62 protected String incidentID;
63
64 /**
65 * Gets the value of the classification property.
66 *
67 * @return
68 * possible object is
69 * {@link SecurityWrapper }
70 *
71 */
72 public SecurityWrapper getClassification() {
73 return classification;
74 }
75
76 /**
77 * Sets the value of the classification property.
78 *
79 * @param value
80 * allowed object is
81 * {@link SecurityWrapper }
82 *
83 */
84 public void setClassification(SecurityWrapper value) {
85 this.classification = value;
86 }
87
88 public boolean isSetClassification() {
89 return (this.classification!= null);
90 }
91
92 /**
93 * Gets the value of the message property.
94 *
95 * @return
96 * possible object is
97 * {@link String }
98 *
99 */
100 public String getMessage() {
101 return message;
102 }
103
104 /**
105 * Sets the value of the message property.
106 *
107 * @param value
108 * allowed object is
109 * {@link String }
110 *
111 */
112 public void setMessage(String value) {
113 this.message = value;
114 }
115
116 public boolean isSetMessage() {
117 return (this.message!= null);
118 }
119
120 /**
121 * Gets the value of the timestamp property.
122 *
123 * @return
124 * possible object is
125 * {@link Calendar }
126 *
127 */
128 public Calendar getTimestamp() {
129 return timestamp;
130 }
131
132 /**
133 * Sets the value of the timestamp property.
134 *
135 * @param value
136 * allowed object is
137 * {@link Calendar }
138 *
139 */
140 public void setTimestamp(Calendar value) {
141 this.timestamp = value;
142 }
143
144 public boolean isSetTimestamp() {
145 return (this.timestamp!= null);
146 }
147
148 /**
149 * Gets the value of the relatedTransaction property.
150 *
151 * @return
152 * possible object is
153 * {@link String }
154 *
155 */
156 public String getRelatedTransaction() {
157 return relatedTransaction;
158 }
159
160 /**
161 * Sets the value of the relatedTransaction property.
162 *
163 * @param value
164 * allowed object is
165 * {@link String }
166 *
167 */
168 public void setRelatedTransaction(String value) {
169 this.relatedTransaction = value;
170 }
171
172 public boolean isSetRelatedTransaction() {
173 return (this.relatedTransaction!= null);
174 }
175
176 /**
177 * Gets the value of the incidentID property.
178 *
179 * @return
180 * possible object is
181 * {@link String }
182 *
183 */
184 public String getIncidentID() {
185 return incidentID;
186 }
187
188 /**
189 * Sets the value of the incidentID property.
190 *
191 * @param value
192 * allowed object is
193 * {@link String }
194 *
195 */
196 public void setIncidentID(String value) {
197 this.incidentID = value;
198 }
199
200 public boolean isSetIncidentID() {
201 return (this.incidentID!= null);
202 }
203
204 }