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.XmlRootElement;
8 import javax.xml.bind.annotation.XmlType;
9
10
11 /**
12 * <p>Java class for anonymous complex type.
13 *
14 * <p>The following schema fragment specifies the expected content contained within this class.
15 *
16 * <pre>
17 * <complexType>
18 * <complexContent>
19 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20 * <sequence>
21 * <element name="req" type="{urn:org:miloss:fgsms:services:interfaces:status}RemoveStatusRequestMsg"/>
22 * </sequence>
23 * </restriction>
24 * </complexContent>
25 * </complexType>
26 * </pre>
27 *
28 *
29 */
30 @XmlAccessorType(XmlAccessType.FIELD)
31 @XmlType(name = "", propOrder = {
32 "req"
33 })
34 @XmlRootElement(name = "RemoveStatus")
35 public class RemoveStatus {
36
37 @XmlElement(required = true, nillable = true)
38 protected RemoveStatusRequestMsg req;
39
40 /**
41 * Gets the value of the req property.
42 *
43 * @return
44 * possible object is
45 * {@link RemoveStatusRequestMsg }
46 *
47 */
48 public RemoveStatusRequestMsg getReq() {
49 return req;
50 }
51
52 /**
53 * Sets the value of the req property.
54 *
55 * @param value
56 * allowed object is
57 * {@link RemoveStatusRequestMsg }
58 *
59 */
60 public void setReq(RemoveStatusRequestMsg value) {
61 this.req = value;
62 }
63
64 }