1
2 package org.oasis_open.docs.wsn.br_2;
3
4 import java.util.ArrayList;
5 import java.util.List;
6 import javax.xml.bind.annotation.XmlAccessType;
7 import javax.xml.bind.annotation.XmlAccessorType;
8 import javax.xml.bind.annotation.XmlElement;
9 import javax.xml.bind.annotation.XmlRootElement;
10 import javax.xml.bind.annotation.XmlSchemaType;
11 import javax.xml.bind.annotation.XmlType;
12 import org.oasis_open.docs.wsn.b_2.TopicExpressionType;
13 import org.oasis_open.docs.wsn.t_1.TopicSetType;
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 = "", propOrder = {
41 "topicExpression",
42 "fixedTopicSet",
43 "topicExpressionDialect",
44 "topicSet",
45 "requiresRegistration"
46 })
47 @XmlRootElement(name = "NotificationBrokerRP")
48 public class NotificationBrokerRP {
49
50 @XmlElement(name = "TopicExpression", namespace = "http://docs.oasis-open.org/wsn/b-2")
51 protected List<TopicExpressionType> topicExpression;
52 @XmlElement(name = "FixedTopicSet", namespace = "http://docs.oasis-open.org/wsn/b-2", defaultValue = "true")
53 protected Boolean fixedTopicSet;
54 @XmlElement(name = "TopicExpressionDialect", namespace = "http://docs.oasis-open.org/wsn/b-2")
55 @XmlSchemaType(name = "anyURI")
56 protected List<String> topicExpressionDialect;
57 @XmlElement(name = "TopicSet", namespace = "http://docs.oasis-open.org/wsn/t-1")
58 protected TopicSetType topicSet;
59 @XmlElement(name = "RequiresRegistration")
60 protected boolean requiresRegistration;
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84 public List<TopicExpressionType> getTopicExpression() {
85 if (topicExpression == null) {
86 topicExpression = new ArrayList<TopicExpressionType>();
87 }
88 return this.topicExpression;
89 }
90
91
92
93
94
95
96
97
98
99 public Boolean isFixedTopicSet() {
100 return fixedTopicSet;
101 }
102
103
104
105
106
107
108
109
110
111 public void setFixedTopicSet(Boolean value) {
112 this.fixedTopicSet = value;
113 }
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137 public List<String> getTopicExpressionDialect() {
138 if (topicExpressionDialect == null) {
139 topicExpressionDialect = new ArrayList<String>();
140 }
141 return this.topicExpressionDialect;
142 }
143
144
145
146
147
148
149
150
151
152 public TopicSetType getTopicSet() {
153 return topicSet;
154 }
155
156
157
158
159
160
161
162
163
164 public void setTopicSet(TopicSetType value) {
165 this.topicSet = value;
166 }
167
168
169
170
171
172 public boolean isRequiresRegistration() {
173 return requiresRegistration;
174 }
175
176
177
178
179
180 public void setRequiresRegistration(boolean value) {
181 this.requiresRegistration = value;
182 }
183
184 }