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
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
42
43
44
45
46
47
48 public RemoveStatusRequestMsg getReq() {
49 return req;
50 }
51
52
53
54
55
56
57
58
59
60 public void setReq(RemoveStatusRequestMsg value) {
61 this.req = value;
62 }
63
64 }