1 | |
|
2 | |
package org.kuali.student.security.addressing.dto; |
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 | 0 | private final static QName _ReplyAfter_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "ReplyAfter"); |
28 | 0 | private final static QName _EndpointReference_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "EndpointReference"); |
29 | 0 | private final static QName _To_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "To"); |
30 | 0 | private final static QName _RetryAfter_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "RetryAfter"); |
31 | 0 | private final static QName _MessageID_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "MessageID"); |
32 | 0 | private final static QName _FaultTo_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "FaultTo"); |
33 | 0 | private final static QName _Action_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "Action"); |
34 | 0 | private final static QName _ReplyTo_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "ReplyTo"); |
35 | 0 | private final static QName _From_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "From"); |
36 | 0 | private final static QName _RelatesTo_QNAME = new QName("http://schemas.xmlsoap.org/ws/2004/08/addressing", "RelatesTo"); |
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | 0 | public ObjectFactory() { |
43 | 0 | } |
44 | |
|
45 | |
|
46 | |
|
47 | |
|
48 | |
|
49 | |
public ReplyAfterType createReplyAfterType() { |
50 | 0 | return new ReplyAfterType(); |
51 | |
} |
52 | |
|
53 | |
|
54 | |
|
55 | |
|
56 | |
|
57 | |
public Relationship createRelationship() { |
58 | 0 | return new Relationship(); |
59 | |
} |
60 | |
|
61 | |
|
62 | |
|
63 | |
|
64 | |
|
65 | |
public EndpointReferenceType createEndpointReferenceType() { |
66 | 0 | return new EndpointReferenceType(); |
67 | |
} |
68 | |
|
69 | |
|
70 | |
|
71 | |
|
72 | |
|
73 | |
public ReferencePropertiesType createReferencePropertiesType() { |
74 | 0 | return new ReferencePropertiesType(); |
75 | |
} |
76 | |
|
77 | |
|
78 | |
|
79 | |
|
80 | |
|
81 | |
public ReferenceParametersType createReferenceParametersType() { |
82 | 0 | return new ReferenceParametersType(); |
83 | |
} |
84 | |
|
85 | |
|
86 | |
|
87 | |
|
88 | |
|
89 | |
public AttributedQName createAttributedQName() { |
90 | 0 | return new AttributedQName(); |
91 | |
} |
92 | |
|
93 | |
|
94 | |
|
95 | |
|
96 | |
|
97 | |
public RetryAfterType createRetryAfterType() { |
98 | 0 | return new RetryAfterType(); |
99 | |
} |
100 | |
|
101 | |
|
102 | |
|
103 | |
|
104 | |
|
105 | |
public AttributedURI createAttributedURI() { |
106 | 0 | return new AttributedURI(); |
107 | |
} |
108 | |
|
109 | |
|
110 | |
|
111 | |
|
112 | |
|
113 | |
public ServiceNameType createServiceNameType() { |
114 | 0 | return new ServiceNameType(); |
115 | |
} |
116 | |
|
117 | |
|
118 | |
|
119 | |
|
120 | |
|
121 | |
@XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "ReplyAfter") |
122 | |
public JAXBElement<ReplyAfterType> createReplyAfter(ReplyAfterType value) { |
123 | 0 | return new JAXBElement<ReplyAfterType>(_ReplyAfter_QNAME, ReplyAfterType.class, null, value); |
124 | |
} |
125 | |
|
126 | |
|
127 | |
|
128 | |
|
129 | |
|
130 | |
@XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "EndpointReference") |
131 | |
public JAXBElement<EndpointReferenceType> createEndpointReference(EndpointReferenceType value) { |
132 | 0 | return new JAXBElement<EndpointReferenceType>(_EndpointReference_QNAME, EndpointReferenceType.class, null, value); |
133 | |
} |
134 | |
|
135 | |
|
136 | |
|
137 | |
|
138 | |
|
139 | |
@XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "To") |
140 | |
public JAXBElement<AttributedURI> createTo(AttributedURI value) { |
141 | 0 | return new JAXBElement<AttributedURI>(_To_QNAME, AttributedURI.class, null, value); |
142 | |
} |
143 | |
|
144 | |
|
145 | |
|
146 | |
|
147 | |
|
148 | |
@XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "RetryAfter") |
149 | |
public JAXBElement<RetryAfterType> createRetryAfter(RetryAfterType value) { |
150 | 0 | return new JAXBElement<RetryAfterType>(_RetryAfter_QNAME, RetryAfterType.class, null, value); |
151 | |
} |
152 | |
|
153 | |
|
154 | |
|
155 | |
|
156 | |
|
157 | |
@XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "MessageID") |
158 | |
public JAXBElement<AttributedURI> createMessageID(AttributedURI value) { |
159 | 0 | return new JAXBElement<AttributedURI>(_MessageID_QNAME, AttributedURI.class, null, value); |
160 | |
} |
161 | |
|
162 | |
|
163 | |
|
164 | |
|
165 | |
|
166 | |
@XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "FaultTo") |
167 | |
public JAXBElement<EndpointReferenceType> createFaultTo(EndpointReferenceType value) { |
168 | 0 | return new JAXBElement<EndpointReferenceType>(_FaultTo_QNAME, EndpointReferenceType.class, null, value); |
169 | |
} |
170 | |
|
171 | |
|
172 | |
|
173 | |
|
174 | |
|
175 | |
@XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "Action") |
176 | |
public JAXBElement<AttributedURI> createAction(AttributedURI value) { |
177 | 0 | return new JAXBElement<AttributedURI>(_Action_QNAME, AttributedURI.class, null, value); |
178 | |
} |
179 | |
|
180 | |
|
181 | |
|
182 | |
|
183 | |
|
184 | |
@XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "ReplyTo") |
185 | |
public JAXBElement<EndpointReferenceType> createReplyTo(EndpointReferenceType value) { |
186 | 0 | return new JAXBElement<EndpointReferenceType>(_ReplyTo_QNAME, EndpointReferenceType.class, null, value); |
187 | |
} |
188 | |
|
189 | |
|
190 | |
|
191 | |
|
192 | |
|
193 | |
@XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "From") |
194 | |
public JAXBElement<EndpointReferenceType> createFrom(EndpointReferenceType value) { |
195 | 0 | return new JAXBElement<EndpointReferenceType>(_From_QNAME, EndpointReferenceType.class, null, value); |
196 | |
} |
197 | |
|
198 | |
|
199 | |
|
200 | |
|
201 | |
|
202 | |
@XmlElementDecl(namespace = "http://schemas.xmlsoap.org/ws/2004/08/addressing", name = "RelatesTo") |
203 | |
public JAXBElement<Relationship> createRelatesTo(Relationship value) { |
204 | 0 | return new JAXBElement<Relationship>(_RelatesTo_QNAME, Relationship.class, null, value); |
205 | |
} |
206 | |
|
207 | |
} |