1
2 package org.miloss.fgsms.services.interfaces.status;
3
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlSchemaType;
8 import javax.xml.bind.annotation.XmlType;
9 import java.util.Calendar;
10 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
11
12
13 /**
14 * response
15 *
16 * <p>Java class for GetStatusResponseMsg complex type.
17 *
18 * <p>The following schema fragment specifies the expected content contained within this class.
19 *
20 * <pre>
21 * <complexType name="GetStatusResponseMsg">
22 * <complexContent>
23 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
24 * <sequence>
25 * <element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
26 * <element name="Operational" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
27 * <element name="URI" type="{http://www.w3.org/2001/XMLSchema}string"/>
28 * <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string"/>
29 * <element name="TimeStamp" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
30 * <element name="LastStatusChangeTimeStamp" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
31 * </sequence>
32 * </restriction>
33 * </complexContent>
34 * </complexType>
35 * </pre>
36 *
37 *
38 */
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "GetStatusResponseMsg", propOrder = {
41 "classification",
42 "operational",
43 "uri",
44 "message",
45 "timeStamp",
46 "lastStatusChangeTimeStamp"
47 })
48 public class GetStatusResponseMsg {
49
50 @XmlElement(required = true, nillable = true)
51 protected SecurityWrapper classification;
52 @XmlElement(name = "Operational")
53 protected boolean operational;
54 @XmlElement(name = "URI", required = true, nillable = true)
55 protected String uri;
56 @XmlElement(name = "Message", required = true, nillable = true)
57 protected String message;
58 @XmlElement(name = "TimeStamp", required = true)
59 @XmlSchemaType(name = "dateTime")
60 protected Calendar timeStamp;
61 @XmlElement(name = "LastStatusChangeTimeStamp", required = true)
62 @XmlSchemaType(name = "dateTime")
63 protected Calendar lastStatusChangeTimeStamp;
64
65 /**
66 * Gets the value of the classification property.
67 *
68 * @return
69 * possible object is
70 * {@link SecurityWrapper }
71 *
72 */
73 public SecurityWrapper getClassification() {
74 return classification;
75 }
76
77 /**
78 * Sets the value of the classification property.
79 *
80 * @param value
81 * allowed object is
82 * {@link SecurityWrapper }
83 *
84 */
85 public void setClassification(SecurityWrapper value) {
86 this.classification = value;
87 }
88
89 /**
90 * Gets the value of the operational property.
91 *
92 */
93 public boolean isOperational() {
94 return operational;
95 }
96
97 /**
98 * Sets the value of the operational property.
99 *
100 */
101 public void setOperational(boolean value) {
102 this.operational = value;
103 }
104
105 /**
106 * Gets the value of the uri property.
107 *
108 * @return
109 * possible object is
110 * {@link String }
111 *
112 */
113 public String getURI() {
114 return uri;
115 }
116
117 /**
118 * Sets the value of the uri property.
119 *
120 * @param value
121 * allowed object is
122 * {@link String }
123 *
124 */
125 public void setURI(String value) {
126 this.uri = value;
127 }
128
129 /**
130 * Gets the value of the message property.
131 *
132 * @return
133 * possible object is
134 * {@link String }
135 *
136 */
137 public String getMessage() {
138 return message;
139 }
140
141 /**
142 * Sets the value of the message property.
143 *
144 * @param value
145 * allowed object is
146 * {@link String }
147 *
148 */
149 public void setMessage(String value) {
150 this.message = value;
151 }
152
153 /**
154 * Gets the value of the timeStamp property.
155 *
156 * @return
157 * possible object is
158 * {@link Calendar }
159 *
160 */
161 public Calendar getTimeStamp() {
162 return timeStamp;
163 }
164
165 /**
166 * Sets the value of the timeStamp property.
167 *
168 * @param value
169 * allowed object is
170 * {@link Calendar }
171 *
172 */
173 public void setTimeStamp(Calendar value) {
174 this.timeStamp = value;
175 }
176
177 /**
178 * Gets the value of the lastStatusChangeTimeStamp property.
179 *
180 * @return
181 * possible object is
182 * {@link Calendar }
183 *
184 */
185 public Calendar getLastStatusChangeTimeStamp() {
186 return lastStatusChangeTimeStamp;
187 }
188
189 /**
190 * Sets the value of the lastStatusChangeTimeStamp property.
191 *
192 * @param value
193 * allowed object is
194 * {@link Calendar }
195 *
196 */
197 public void setLastStatusChangeTimeStamp(Calendar value) {
198 this.lastStatusChangeTimeStamp = value;
199 }
200
201 }