1
2 package org.xmlsoap.schemas.ws._2004._08.addressing;
3
4 import javax.xml.bind.JAXBElement;
5 import javax.xml.bind.annotation.XmlElementDecl;
6 import javax.xml.bind.annotation.XmlRegistry;
7 import javax.xml.namespace.QName;
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 @XmlRegistry
25 public class ObjectFactory {
26
27 private final static QName _EndpointReference_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "EndpointReference");
28 private final static QName _MessageID_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "MessageID");
29 private final static QName _RelatesTo_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "RelatesTo");
30 private final static QName _To_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "To");
31 private final static QName _Action_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "Action");
32 private final static QName _From_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "From");
33 private final static QName _ReplyTo_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "ReplyTo");
34 private final static QName _FaultTo_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "FaultTo");
35 private final static QName _ReplyAfter_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "ReplyAfter");
36 private final static QName _RetryAfter_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "RetryAfter");
37
38
39
40
41
42 public ObjectFactory() {
43 }
44
45
46
47
48
49 public EndpointReferenceType createEndpointReferenceType() {
50 return new EndpointReferenceType();
51 }
52
53
54
55
56
57 public AttributedURI createAttributedURI() {
58 return new AttributedURI();
59 }
60
61
62
63
64
65 public Relationship createRelationship() {
66 return new Relationship();
67 }
68
69
70
71
72
73 public ReplyAfterType createReplyAfterType() {
74 return new ReplyAfterType();
75 }
76
77
78
79
80
81 public RetryAfterType createRetryAfterType() {
82 return new RetryAfterType();
83 }
84
85
86
87
88
89 public ReferencePropertiesType createReferencePropertiesType() {
90 return new ReferencePropertiesType();
91 }
92
93
94
95
96
97 public ReferenceParametersType createReferenceParametersType() {
98 return new ReferenceParametersType();
99 }
100
101
102
103
104
105 public ServiceNameType createServiceNameType() {
106 return new ServiceNameType();
107 }
108
109
110
111
112
113 public AttributedQName createAttributedQName() {
114 return new AttributedQName();
115 }
116
117
118
119
120
121
122
123
124
125 @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "EndpointReference")
126 public JAXBElement<EndpointReferenceType> createEndpointReference(EndpointReferenceType value) {
127 return new JAXBElement<EndpointReferenceType>(_EndpointReference_QNAME, EndpointReferenceType.class, null, value);
128 }
129
130
131
132
133
134
135
136
137
138 @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "MessageID")
139 public JAXBElement<AttributedURI> createMessageID(AttributedURI value) {
140 return new JAXBElement<AttributedURI>(_MessageID_QNAME, AttributedURI.class, null, value);
141 }
142
143
144
145
146
147
148
149
150
151 @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "RelatesTo")
152 public JAXBElement<Relationship> createRelatesTo(Relationship value) {
153 return new JAXBElement<Relationship>(_RelatesTo_QNAME, Relationship.class, null, value);
154 }
155
156
157
158
159
160
161
162
163
164 @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "To")
165 public JAXBElement<AttributedURI> createTo(AttributedURI value) {
166 return new JAXBElement<AttributedURI>(_To_QNAME, AttributedURI.class, null, value);
167 }
168
169
170
171
172
173
174
175
176
177 @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "Action")
178 public JAXBElement<AttributedURI> createAction(AttributedURI value) {
179 return new JAXBElement<AttributedURI>(_Action_QNAME, AttributedURI.class, null, value);
180 }
181
182
183
184
185
186
187
188
189
190 @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "From")
191 public JAXBElement<EndpointReferenceType> createFrom(EndpointReferenceType value) {
192 return new JAXBElement<EndpointReferenceType>(_From_QNAME, EndpointReferenceType.class, null, value);
193 }
194
195
196
197
198
199
200
201
202
203 @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "ReplyTo")
204 public JAXBElement<EndpointReferenceType> createReplyTo(EndpointReferenceType value) {
205 return new JAXBElement<EndpointReferenceType>(_ReplyTo_QNAME, EndpointReferenceType.class, null, value);
206 }
207
208
209
210
211
212
213
214
215
216 @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "FaultTo")
217 public JAXBElement<EndpointReferenceType> createFaultTo(EndpointReferenceType value) {
218 return new JAXBElement<EndpointReferenceType>(_FaultTo_QNAME, EndpointReferenceType.class, null, value);
219 }
220
221
222
223
224
225
226
227
228
229 @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "ReplyAfter")
230 public JAXBElement<ReplyAfterType> createReplyAfter(ReplyAfterType value) {
231 return new JAXBElement<ReplyAfterType>(_ReplyAfter_QNAME, ReplyAfterType.class, null, value);
232 }
233
234
235
236
237
238
239
240
241
242 @XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "RetryAfter")
243 public JAXBElement<RetryAfterType> createRetryAfter(RetryAfterType value) {
244 return new JAXBElement<RetryAfterType>(_RetryAfter_QNAME, RetryAfterType.class, null, value);
245 }
246
247 }