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.XmlType;
8 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
9
10
11 /**
12 * response
13 *
14 * <p>Java class for SetStatusResponseMsg complex type.
15 *
16 * <p>The following schema fragment specifies the expected content contained within this class.
17 *
18 * <pre>
19 * <complexType name="SetStatusResponseMsg">
20 * <complexContent>
21 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
22 * <sequence>
23 * <element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
24 * <element name="Status" type="{urn:org:miloss:fgsms:services:interfaces:status}SetResponseStatus"/>
25 * </sequence>
26 * </restriction>
27 * </complexContent>
28 * </complexType>
29 * </pre>
30 *
31 *
32 */
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "SetStatusResponseMsg", propOrder = {
35 "classification",
36 "status"
37 })
38 public class SetStatusResponseMsg {
39
40 @XmlElement(required = true, nillable = true)
41 protected SecurityWrapper classification;
42 @XmlElement(name = "Status", required = true)
43 protected SetResponseStatus status;
44
45 /**
46 * Gets the value of the classification property.
47 *
48 * @return
49 * possible object is
50 * {@link SecurityWrapper }
51 *
52 */
53 public SecurityWrapper getClassification() {
54 return classification;
55 }
56
57 /**
58 * Sets the value of the classification property.
59 *
60 * @param value
61 * allowed object is
62 * {@link SecurityWrapper }
63 *
64 */
65 public void setClassification(SecurityWrapper value) {
66 this.classification = value;
67 }
68
69 /**
70 * Gets the value of the status property.
71 *
72 * @return
73 * possible object is
74 * {@link SetResponseStatus }
75 *
76 */
77 public SetResponseStatus getStatus() {
78 return status;
79 }
80
81 /**
82 * Sets the value of the status property.
83 *
84 * @param value
85 * allowed object is
86 * {@link SetResponseStatus }
87 *
88 */
89 public void setStatus(SetResponseStatus value) {
90 this.status = value;
91 }
92
93 }