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 import org.miloss.fgsms.services.interfaces.common.TimeRange;
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "GetHistoricalTopicQueueDetailsRequestMsg", propOrder = {
40 "classification",
41 "range",
42 "uri",
43 "queuetopicname",
44 "queuetopiccanonicalname"
45 })
46 public class GetHistoricalTopicQueueDetailsRequestMsg
47 implements Serializable
48 {
49
50 private final static long serialVersionUID = 1L;
51 @XmlElement(required = true, nillable = true)
52 protected SecurityWrapper classification;
53 @XmlElement(required = true)
54 protected TimeRange range;
55 @XmlElement(required = true)
56 protected String uri;
57 @XmlElement(required = true)
58 protected String queuetopicname;
59 @XmlElement(required = true)
60 protected String queuetopiccanonicalname;
61
62
63
64
65
66
67
68
69
70 public SecurityWrapper getClassification() {
71 return classification;
72 }
73
74
75
76
77
78
79
80
81
82 public void setClassification(SecurityWrapper value) {
83 this.classification = value;
84 }
85
86 public boolean isSetClassification() {
87 return (this.classification!= null);
88 }
89
90
91
92
93
94
95
96
97
98 public TimeRange getRange() {
99 return range;
100 }
101
102
103
104
105
106
107
108
109
110 public void setRange(TimeRange value) {
111 this.range = value;
112 }
113
114 public boolean isSetRange() {
115 return (this.range!= null);
116 }
117
118
119
120
121
122
123
124
125
126 public String getUri() {
127 return uri;
128 }
129
130
131
132
133
134
135
136
137
138 public void setUri(String value) {
139 this.uri = value;
140 }
141
142 public boolean isSetUri() {
143 return (this.uri!= null);
144 }
145
146
147
148
149
150
151
152
153
154 public String getQueuetopicname() {
155 return queuetopicname;
156 }
157
158
159
160
161
162
163
164
165
166 public void setQueuetopicname(String value) {
167 this.queuetopicname = value;
168 }
169
170 public boolean isSetQueuetopicname() {
171 return (this.queuetopicname!= null);
172 }
173
174
175
176
177
178
179
180
181
182 public String getQueuetopiccanonicalname() {
183 return queuetopiccanonicalname;
184 }
185
186
187
188
189
190
191
192
193
194 public void setQueuetopiccanonicalname(String value) {
195 this.queuetopiccanonicalname = value;
196 }
197
198 public boolean isSetQueuetopiccanonicalname() {
199 return (this.queuetopiccanonicalname!= null);
200 }
201
202 }