Uses of Class
javax.xml.ws.EndpointReference
-
Packages that use EndpointReference Package Description javax.xml.ws This package contains the core Jakarta XML Web Services APIs.javax.xml.ws.spi This package defines SPIs for Jakarta XML Web Services.javax.xml.ws.wsaddressing This package defines APIs related to WS-Addressing. -
-
Uses of EndpointReference in javax.xml.ws
Methods in javax.xml.ws with type parameters of type EndpointReference Modifier and Type Method Description <T extends EndpointReference>
TBindingProvider. getEndpointReference(Class<T> clazz)
Returns theEndpointReference
associated with thisBindingProvider
instance.abstract <T extends EndpointReference>
TEndpoint. getEndpointReference(Class<T> clazz, Element... referenceParameters)
Returns theEndpointReference
associated with thisEndpoint
instance.<T extends EndpointReference>
TWebServiceContext. getEndpointReference(Class<T> clazz, Element... referenceParameters)
Returns theEndpointReference
associated with this endpoint.Methods in javax.xml.ws that return EndpointReference Modifier and Type Method Description EndpointReference
BindingProvider. getEndpointReference()
Returns theEndpointReference
associated with thisBindingProvider
instance.abstract EndpointReference
Endpoint. getEndpointReference(Element... referenceParameters)
Returns theEndpointReference
associated with thisEndpoint
instance.EndpointReference
WebServiceContext. getEndpointReference(Element... referenceParameters)
Returns theEndpointReference
for this endpoint.static EndpointReference
EndpointReference. readFrom(Source eprInfoset)
Factory method to read an EndpointReference from the infoset contained ineprInfoset
.Methods in javax.xml.ws with parameters of type EndpointReference Modifier and Type Method Description <T> Dispatch<T>
Service. createDispatch(EndpointReference endpointReference, Class<T> type, Service.Mode mode, WebServiceFeature... features)
Creates aDispatch
instance for use with objects of the client's choosing.Dispatch<Object>
Service. createDispatch(EndpointReference endpointReference, JAXBContext context, Service.Mode mode, WebServiceFeature... features)
Creates aDispatch
instance for use with JAXB generated objects.<T> T
Service. getPort(EndpointReference endpointReference, Class<T> serviceEndpointInterface, WebServiceFeature... features)
ThegetPort
method returns a proxy. -
Uses of EndpointReference in javax.xml.ws.spi
Methods in javax.xml.ws.spi that return EndpointReference Modifier and Type Method Description abstract EndpointReference
Provider. readEndpointReference(Source eprInfoset)
read an EndpointReference from the infoset contained ineprInfoset
.Methods in javax.xml.ws.spi with parameters of type EndpointReference Modifier and Type Method Description abstract <T> Dispatch<T>
ServiceDelegate. createDispatch(EndpointReference endpointReference, Class<T> type, Service.Mode mode, WebServiceFeature... features)
Creates aDispatch
instance for use with objects of the user's choosing.abstract Dispatch<Object>
ServiceDelegate. createDispatch(EndpointReference endpointReference, JAXBContext context, Service.Mode mode, WebServiceFeature... features)
Creates aDispatch
instance for use with JAXB generated objects.abstract <T> T
Provider. getPort(EndpointReference endpointReference, Class<T> serviceEndpointInterface, WebServiceFeature... features)
The getPort method returns a proxy.abstract <T> T
ServiceDelegate. getPort(EndpointReference endpointReference, Class<T> serviceEndpointInterface, WebServiceFeature... features)
ThegetPort
method returns a proxy. -
Uses of EndpointReference in javax.xml.ws.wsaddressing
Subclasses of EndpointReference in javax.xml.ws.wsaddressing Modifier and Type Class Description class
W3CEndpointReference
This class represents a W3C Addressing EndpointReferece which is a remote reference to a web service endpoint that supports the W3C WS-Addressing 1.0 - Core Recommendation.
-