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
33 @XmlAccessorType(XmlAccessType.FIELD)
34 @XmlType(name = "GetStatusRequestMsg", propOrder = {
35 "classification",
36 "uri"
37 })
38 public class GetStatusRequestMsg {
39
40 @XmlElement(required = true, nillable = true)
41 protected SecurityWrapper classification;
42 @XmlElement(name = "URI", required = true, nillable = true)
43 protected String uri;
44
45
46
47
48
49
50
51
52
53 public SecurityWrapper getClassification() {
54 return classification;
55 }
56
57
58
59
60
61
62
63
64
65 public void setClassification(SecurityWrapper value) {
66 this.classification = value;
67 }
68
69
70
71
72
73
74
75
76
77 public String getURI() {
78 return uri;
79 }
80
81
82
83
84
85
86
87
88
89 public void setURI(String value) {
90 this.uri = value;
91 }
92
93 }