Searched refs:W3CEndpointReference (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/wsaddressing/
H A Dpackage-info.java26 @javax.xml.bind.annotation.XmlSchema(namespace=W3CEndpointReference.NS,
H A DW3CEndpointReference.java68 @XmlRootElement(name="EndpointReference",namespace=W3CEndpointReference.NS)
69 @XmlType(name="EndpointReferenceType",namespace=W3CEndpointReference.NS)
70 public final class W3CEndpointReference extends EndpointReference { class in inherits:EndpointReference
74 protected W3CEndpointReference() { method in class:W3CEndpointReference
90 public W3CEndpointReference(Source source) { method in class:W3CEndpointReference
92 W3CEndpointReference epr = w3cjc.createUnmarshaller().unmarshal(source,W3CEndpointReference.class).getValue();
99 throw new WebServiceException("Error unmarshalling W3CEndpointReference " ,e);
101 throw new WebServiceException("Source did not contain W3CEndpointReference", e);
113 throw new WebServiceException("Error marshalling W3CEndpointReference
[all...]
H A DW3CEndpointReferenceBuilder.java41 * This class is used to build <code>W3CEndpointReference</code>
44 * to create an <code>W3CEndpointReference</code> for a
50 * When creating a <code>W3CEndpointReference</code> for an
54 * When creating a <code>W3CEndpointReference</code> for an endpoint
80 * <code>W3CEndpointReference</code> instance's
84 * value when building a <code>W3CEndpointReference</code> for a
89 * by the returned <code>W3CEndpointReference</code>.
108 * by the returned <code>W3CEndpointReference</code>.
128 * by the returned <code>W3CEndpointReference</code>. This property
153 * by the returned <code>W3CEndpointReference</cod
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DWebServiceContext.java30 import javax.xml.ws.wsaddressing.W3CEndpointReference;
107 * <code>W3CEndpointReference</code> MUST be returned.
114 * <code>W3CEndpointReference</code> then it MUST contain the
121 * @see W3CEndpointReference
138 * <code>W3CEndpointReference</code> then it MUST contain the
H A DBindingProvider.java29 import javax.xml.ws.wsaddressing.W3CEndpointReference;
147 * <code>W3CEndpointReference</code> MUST be returned.
155 * @see W3CEndpointReference
H A DEndpointReference.java33 import javax.xml.ws.wsaddressing.W3CEndpointReference;
55 * For example the {@link W3CEndpointReference} is for use
69 * as the <code>W3CEndpointReference</code>. This way the
80 * subclass such as {@link W3CEndpointReference}.
82 * @see W3CEndpointReference
H A DEndpoint.java32 import javax.xml.ws.wsaddressing.W3CEndpointReference;
432 * <code>W3CEndpointReference</code> MUST be returned.
438 * <code>W3CEndpointReference</code> then it MUST contain the
447 * @see W3CEndpointReference
464 * <code>W3CEndpointReference</code> then it MUST contain the
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DAbstractWebServiceContext.java36 import javax.xml.ws.wsaddressing.W3CEndpointReference;
81 return getEndpointReference(W3CEndpointReference.class, referenceParameters);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/
H A DProvider.java35 import javax.xml.ws.wsaddressing.W3CEndpointReference;
314 * Factory method to create a <code>W3CEndpointReference</code>.
317 * This method can be used to create a <code>W3CEndpointReference</code>
320 * can also be used to create a <code>W3CEndpointReference</code> for
336 * <code>W3CEndpointReference</code> instances <code>wsa:metadata</code>
343 * @return the <code>W3CEndpointReference</code> created from
367 * <code>W3CEndpointReference</code>.
371 public abstract W3CEndpointReference createW3CEndpointReference(String address, QName serviceName, QName portName,
376 * Factory method to create a <code>W3CEndpointReference</code>.
377 * Using this method, a <code>W3CEndpointReference</cod
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/developer/
H A DEPRRecipe.java34 import javax.xml.ws.wsaddressing.W3CEndpointReference;
48 * statefulWebServiceManager.export({@link W3CEndpointReference}.class,myObject,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/spi/
H A DProviderImpl.java66 import javax.xml.ws.wsaddressing.W3CEndpointReference;
170 public W3CEndpointReference createW3CEndpointReference(String address, QName serviceName, QName portName, List<Element> metadata, String wsdlDocumentLocation, List<Element> referenceParameters) {
174 public W3CEndpointReference createW3CEndpointReference(String address, QName interfaceName, QName serviceName, QName portName,
237 AddressingVersion.fromSpecClass(W3CEndpointReference.class),
238 address, serviceName, portName, interfaceName, metadata, wsdlDocumentLocation, wsdlTargetNamespace,referenceParameters, elements, attributes).toSpec(W3CEndpointReference.class);
249 return JAXBContext.newInstance(MemberSubmissionEndpointReference.class, W3CEndpointReference.class);
251 throw new WebServiceException("Error creating JAXBContext for W3CEndpointReference. ", e);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DEndpointReferenceUtil.java45 import javax.xml.ws.wsaddressing.W3CEndpointReference;
61 if (clazz.isAssignableFrom(W3CEndpointReference.class)) {
62 if (epr instanceof W3CEndpointReference) {
68 if (epr instanceof W3CEndpointReference) {
69 return (T) toMSEpr((W3CEndpointReference) epr);
80 private static W3CEndpointReference toW3CEpr(MemberSubmissionEndpointReference msEpr) {
198 return new W3CEndpointReference(new XMLStreamBufferSource(writer.getXMLStreamBuffer()));
210 private static MemberSubmissionEndpointReference toMSEpr(W3CEndpointReference w3cEpr) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/addressing/
H A DAddressingVersion.java48 import javax.xml.ws.wsaddressing.W3CEndpointReference;
65 new EPR(W3CEndpointReference.class,
232 * Representing either {@link W3CEndpointReference} or
666 if(eprClass==W3CEndpointReference.class)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DStub.java61 import javax.xml.ws.wsaddressing.W3CEndpointReference;
467 public final W3CEndpointReference getEndpointReference() {
470 return getEndpointReference(W3CEndpointReference.class);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DEndpointImpl.java49 import javax.xml.ws.wsaddressing.W3CEndpointReference;
330 return getEndpointReference(W3CEndpointReference.class, referenceParameters);

Completed in 44 milliseconds