1
2 package org.miloss.fgsms.services.interfaces.dataaccessservice;
3
4 import java.io.Serializable;
5 import javax.xml.bind.annotation.XmlAccessType;
6 import javax.xml.bind.annotation.XmlAccessorType;
7 import javax.xml.bind.annotation.XmlElement;
8 import javax.xml.bind.annotation.XmlType;
9 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
10
11
12 /**
13 * request message
14 *
15 * <p>Java class for GetQuickStatsRequestMsg complex type.
16 *
17 * <p>The following schema fragment specifies the expected content contained within this class.
18 *
19 * <pre>
20 * <complexType name="GetQuickStatsRequestMsg">
21 * <complexContent>
22 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
23 * <sequence>
24 * <element name="classification" type="{urn:org:miloss:fgsms:services:interfaces:common}SecurityWrapper"/>
25 * <element name="uri" type="{http://www.w3.org/2001/XMLSchema}string"/>
26 * </sequence>
27 * </restriction>
28 * </complexContent>
29 * </complexType>
30 * </pre>
31 *
32 *
33 */
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "GetQuickStatsRequestMsg", propOrder = {
36 "classification",
37 "uri"
38 })
39 public class GetQuickStatsRequestMsg
40 implements Serializable
41 {
42
43 private final static long serialVersionUID = 1L;
44 @XmlElement(required = true, nillable = true)
45 protected SecurityWrapper classification;
46 @XmlElement(required = true)
47 protected String uri;
48
49 /**
50 * Gets the value of the classification property.
51 *
52 * @return
53 * possible object is
54 * {@link SecurityWrapper }
55 *
56 */
57 public SecurityWrapper getClassification() {
58 return classification;
59 }
60
61 /**
62 * Sets the value of the classification property.
63 *
64 * @param value
65 * allowed object is
66 * {@link SecurityWrapper }
67 *
68 */
69 public void setClassification(SecurityWrapper value) {
70 this.classification = value;
71 }
72
73 public boolean isSetClassification() {
74 return (this.classification!= null);
75 }
76
77 /**
78 * Gets the value of the uri property.
79 *
80 * @return
81 * possible object is
82 * {@link String }
83 *
84 */
85 public String getUri() {
86 return uri;
87 }
88
89 /**
90 * Sets the value of the uri property.
91 *
92 * @param value
93 * allowed object is
94 * {@link String }
95 *
96 */
97 public void setUri(String value) {
98 this.uri = value;
99 }
100
101 public boolean isSetUri() {
102 return (this.uri!= null);
103 }
104
105 }