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 RemoveStatusResponseMsg complex type.
15 *
16 * <p>The following schema fragment specifies the expected content contained within this class.
17 *
18 * <pre>
19 * <complexType name="RemoveStatusResponseMsg">
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 * </sequence>
25 * </restriction>
26 * </complexContent>
27 * </complexType>
28 * </pre>
29 *
30 *
31 */
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "RemoveStatusResponseMsg", propOrder = {
34 "classification"
35 })
36 public class RemoveStatusResponseMsg {
37
38 @XmlElement(required = true, nillable = true)
39 protected SecurityWrapper classification;
40
41 /**
42 * Gets the value of the classification property.
43 *
44 * @return
45 * possible object is
46 * {@link SecurityWrapper }
47 *
48 */
49 public SecurityWrapper getClassification() {
50 return classification;
51 }
52
53 /**
54 * Sets the value of the classification property.
55 *
56 * @param value
57 * allowed object is
58 * {@link SecurityWrapper }
59 *
60 */
61 public void setClassification(SecurityWrapper value) {
62 this.classification = value;
63 }
64
65 }