1
2 package org.miloss.fgsms.services.interfaces.dataaccessservice;
3
4 import java.io.Serializable;
5 import java.util.ArrayList;
6 import java.util.List;
7 import javax.xml.bind.annotation.XmlAccessType;
8 import javax.xml.bind.annotation.XmlAccessorType;
9 import javax.xml.bind.annotation.XmlElement;
10 import javax.xml.bind.annotation.XmlType;
11 import org.miloss.fgsms.services.interfaces.common.SecurityWrapper;
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
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "GetCurrentBrokerDetailsResponseMsg", propOrder = {
41 "uri",
42 "displayName",
43 "operational",
44 "classification",
45 "queueORtopicDetails"
46 })
47 public class GetCurrentBrokerDetailsResponseMsg
48 implements Serializable
49 {
50
51 private final static long serialVersionUID = 1L;
52 @XmlElement(required = true, nillable = true)
53 protected String uri;
54 @XmlElement(required = true, nillable = true)
55 protected String displayName;
56 @XmlElement(required = true, type = Boolean.class, nillable = true)
57 protected Boolean operational;
58 @XmlElement(required = true, nillable = true)
59 protected SecurityWrapper classification;
60 @XmlElement(required = true)
61 protected List<QueueORtopicDetails> queueORtopicDetails;
62
63
64
65
66
67
68
69
70
71 public String getUri() {
72 return uri;
73 }
74
75
76
77
78
79
80
81
82
83 public void setUri(String value) {
84 this.uri = value;
85 }
86
87 public boolean isSetUri() {
88 return (this.uri!= null);
89 }
90
91
92
93
94
95
96
97
98
99 public String getDisplayName() {
100 return displayName;
101 }
102
103
104
105
106
107
108
109
110
111 public void setDisplayName(String value) {
112 this.displayName = value;
113 }
114
115 public boolean isSetDisplayName() {
116 return (this.displayName!= null);
117 }
118
119
120
121
122
123
124
125
126
127 public Boolean isOperational() {
128 return operational;
129 }
130
131
132
133
134
135
136
137
138
139 public void setOperational(Boolean value) {
140 this.operational = value;
141 }
142
143 public boolean isSetOperational() {
144 return (this.operational!= null);
145 }
146
147
148
149
150
151
152
153
154
155 public SecurityWrapper getClassification() {
156 return classification;
157 }
158
159
160
161
162
163
164
165
166
167 public void setClassification(SecurityWrapper value) {
168 this.classification = value;
169 }
170
171 public boolean isSetClassification() {
172 return (this.classification!= null);
173 }
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197 public List<QueueORtopicDetails> getQueueORtopicDetails() {
198 if (queueORtopicDetails == null) {
199 queueORtopicDetails = new ArrayList<QueueORtopicDetails>();
200 }
201 return this.queueORtopicDetails;
202 }
203
204 public boolean isSetQueueORtopicDetails() {
205 return ((this.queueORtopicDetails!= null)&&(!this.queueORtopicDetails.isEmpty()));
206 }
207
208 public void unsetQueueORtopicDetails() {
209 this.queueORtopicDetails = null;
210 }
211
212 }