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 * request
13 *
14 * <p>Java class for GetStatusRequestMsg complex type.
15 *
16 * <p>The following schema fragment specifies the expected content contained within this class.
17 *
18 * <pre>
19 * <complexType name="GetStatusRequestMsg">
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 * <element name="URI" type="{http://www.w3.org/2001/XMLSchema}string"/>
25 * </sequence>
26 * </restriction>
27 * </complexContent>
28 * </complexType>
29 * </pre>
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 * Gets the value of the classification property.
47 *
48 * @return
49 * possible object is
50 * {@link SecurityWrapper }
51 *
52 */
53 public SecurityWrapper getClassification() {
54 return classification;
55 }
56
57 /**
58 * Sets the value of the classification property.
59 *
60 * @param value
61 * allowed object is
62 * {@link SecurityWrapper }
63 *
64 */
65 public void setClassification(SecurityWrapper value) {
66 this.classification = value;
67 }
68
69 /**
70 * Gets the value of the uri property.
71 *
72 * @return
73 * possible object is
74 * {@link String }
75 *
76 */
77 public String getURI() {
78 return uri;
79 }
80
81 /**
82 * Sets the value of the uri property.
83 *
84 * @param value
85 * allowed object is
86 * {@link String }
87 *
88 */
89 public void setURI(String value) {
90 this.uri = value;
91 }
92
93 }