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