1
2 package org.w3._2005._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 import javax.xml.ws.wsaddressing.W3CEndpointReference;
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25 @XmlRegistry
26 public class ObjectFactory {
27
28 private final static QName _ReferenceParameters_QNAME = new QName("http://www.w3.org/2005/08/addressing", "ReferenceParameters");
29 private final static QName _Metadata_QNAME = new QName("http://www.w3.org/2005/08/addressing", "Metadata");
30 private final static QName _MessageID_QNAME = new QName("http://www.w3.org/2005/08/addressing", "MessageID");
31 private final static QName _RelatesTo_QNAME = new QName("http://www.w3.org/2005/08/addressing", "RelatesTo");
32 private final static QName _ReplyTo_QNAME = new QName("http://www.w3.org/2005/08/addressing", "ReplyTo");
33 private final static QName _From_QNAME = new QName("http://www.w3.org/2005/08/addressing", "From");
34 private final static QName _FaultTo_QNAME = new QName("http://www.w3.org/2005/08/addressing", "FaultTo");
35 private final static QName _To_QNAME = new QName("http://www.w3.org/2005/08/addressing", "To");
36 private final static QName _Action_QNAME = new QName("http://www.w3.org/2005/08/addressing", "Action");
37 private final static QName _RetryAfter_QNAME = new QName("http://www.w3.org/2005/08/addressing", "RetryAfter");
38 private final static QName _ProblemHeaderQName_QNAME = new QName("http://www.w3.org/2005/08/addressing", "ProblemHeaderQName");
39 private final static QName _ProblemIRI_QNAME = new QName("http://www.w3.org/2005/08/addressing", "ProblemIRI");
40 private final static QName _ProblemAction_QNAME = new QName("http://www.w3.org/2005/08/addressing", "ProblemAction");
41
42
43
44
45
46 public ObjectFactory() {
47 }
48
49
50
51
52
53 public ReferenceParametersType createReferenceParametersType() {
54 return new ReferenceParametersType();
55 }
56
57
58
59
60
61 public MetadataType createMetadataType() {
62 return new MetadataType();
63 }
64
65
66
67
68
69 public AttributedURIType createAttributedURIType() {
70 return new AttributedURIType();
71 }
72
73
74
75
76
77 public RelatesToType createRelatesToType() {
78 return new RelatesToType();
79 }
80
81
82
83
84
85 public AttributedUnsignedLongType createAttributedUnsignedLongType() {
86 return new AttributedUnsignedLongType();
87 }
88
89
90
91
92
93 public AttributedQNameType createAttributedQNameType() {
94 return new AttributedQNameType();
95 }
96
97
98
99
100
101 public ProblemActionType createProblemActionType() {
102 return new ProblemActionType();
103 }
104
105
106
107
108
109
110
111
112
113 @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "ReferenceParameters")
114 public JAXBElement<ReferenceParametersType> createReferenceParameters(ReferenceParametersType value) {
115 return new JAXBElement<ReferenceParametersType>(_ReferenceParameters_QNAME, ReferenceParametersType.class, null, value);
116 }
117
118
119
120
121
122
123
124
125
126 @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "Metadata")
127 public JAXBElement<MetadataType> createMetadata(MetadataType value) {
128 return new JAXBElement<MetadataType>(_Metadata_QNAME, MetadataType.class, null, value);
129 }
130
131
132
133
134
135
136
137
138
139 @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "MessageID")
140 public JAXBElement<AttributedURIType> createMessageID(AttributedURIType value) {
141 return new JAXBElement<AttributedURIType>(_MessageID_QNAME, AttributedURIType.class, null, value);
142 }
143
144
145
146
147
148
149
150
151
152 @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "RelatesTo")
153 public JAXBElement<RelatesToType> createRelatesTo(RelatesToType value) {
154 return new JAXBElement<RelatesToType>(_RelatesTo_QNAME, RelatesToType.class, null, value);
155 }
156
157
158
159
160
161
162
163
164
165 @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "ReplyTo")
166 public JAXBElement<W3CEndpointReference> createReplyTo(W3CEndpointReference value) {
167 return new JAXBElement<W3CEndpointReference>(_ReplyTo_QNAME, W3CEndpointReference.class, null, value);
168 }
169
170
171
172
173
174
175
176
177
178 @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "From")
179 public JAXBElement<W3CEndpointReference> createFrom(W3CEndpointReference value) {
180 return new JAXBElement<W3CEndpointReference>(_From_QNAME, W3CEndpointReference.class, null, value);
181 }
182
183
184
185
186
187
188
189
190
191 @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "FaultTo")
192 public JAXBElement<W3CEndpointReference> createFaultTo(W3CEndpointReference value) {
193 return new JAXBElement<W3CEndpointReference>(_FaultTo_QNAME, W3CEndpointReference.class, null, value);
194 }
195
196
197
198
199
200
201
202
203
204 @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "To")
205 public JAXBElement<AttributedURIType> createTo(AttributedURIType value) {
206 return new JAXBElement<AttributedURIType>(_To_QNAME, AttributedURIType.class, null, value);
207 }
208
209
210
211
212
213
214
215
216
217 @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "Action")
218 public JAXBElement<AttributedURIType> createAction(AttributedURIType value) {
219 return new JAXBElement<AttributedURIType>(_Action_QNAME, AttributedURIType.class, null, value);
220 }
221
222
223
224
225
226
227
228
229
230 @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "RetryAfter")
231 public JAXBElement<AttributedUnsignedLongType> createRetryAfter(AttributedUnsignedLongType value) {
232 return new JAXBElement<AttributedUnsignedLongType>(_RetryAfter_QNAME, AttributedUnsignedLongType.class, null, value);
233 }
234
235
236
237
238
239
240
241
242
243 @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "ProblemHeaderQName")
244 public JAXBElement<AttributedQNameType> createProblemHeaderQName(AttributedQNameType value) {
245 return new JAXBElement<AttributedQNameType>(_ProblemHeaderQName_QNAME, AttributedQNameType.class, null, value);
246 }
247
248
249
250
251
252
253
254
255
256 @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "ProblemIRI")
257 public JAXBElement<AttributedURIType> createProblemIRI(AttributedURIType value) {
258 return new JAXBElement<AttributedURIType>(_ProblemIRI_QNAME, AttributedURIType.class, null, value);
259 }
260
261
262
263
264
265
266
267
268
269 @XmlElementDecl(namespace = "http://www.w3.org/2005/08/addressing", name = "ProblemAction")
270 public JAXBElement<ProblemActionType> createProblemAction(ProblemActionType value) {
271 return new JAXBElement<ProblemActionType>(_ProblemAction_QNAME, ProblemActionType.class, null, value);
272 }
273
274 }