A B C D E F G H I J L P R S T U V W 

A

Action - Annotation Type in javax.xml.ws
The Action annotation allows explicit association of a WS-Addressing Action message addressing property with input, output, and fault messages of the mapped WSDL operation.
addPort(QName, String, String) - Method in class javax.xml.ws.Service
Creates a new port for the service.
AsyncHandler<T> - Interface in javax.xml.ws
The AsyncHandler interface is implemented by clients that wish to receive callback notification of the completion of service endpoint operations invoked asynchronously.

B

Binding - Interface in javax.xml.ws
The Binding interface is the base interface for JAX-WS protocol bindings.
BindingProvider - Interface in javax.xml.ws
The BindingProvider interface provides access to the protocol binding and associated context objects for request and response message processing.
BindingType - Annotation Type in javax.xml.ws
The BindingType annotation is used to specify the binding to use for a web service endpoint implementation class.

C

create(Object) - Static method in class javax.xml.ws.Endpoint
Creates an endpoint with the specified implementor object.
create(String, Object) - Static method in class javax.xml.ws.Endpoint
Creates an endpoint with the specified binding type and implementor object.
create(URL, QName) - Static method in class javax.xml.ws.Service
Creates a Service instance.
create(QName) - Static method in class javax.xml.ws.Service
Creates a Service instance.
createDispatch(QName, Class<T>, Service.Mode) - Method in class javax.xml.ws.Service
Creates a Dispatch instance for use with objects of the user's choosing.
createDispatch(QName, Class<T>, Service.Mode, WebServiceFeature...) - Method in class javax.xml.ws.Service
Creates a Dispatch instance for use with objects of the user's choosing.
createDispatch(EndpointReference, Class<T>, Service.Mode, WebServiceFeature...) - Method in class javax.xml.ws.Service
Creates a Dispatch instance for use with objects of the user's choosing.
createDispatch(QName, JAXBContext, Service.Mode) - Method in class javax.xml.ws.Service
Creates a Dispatch instance for use with JAXB generated objects.
createDispatch(QName, JAXBContext, Service.Mode, WebServiceFeature...) - Method in class javax.xml.ws.Service
Creates a Dispatch instance for use with JAXB generated objects.
createDispatch(EndpointReference, JAXBContext, Service.Mode, WebServiceFeature...) - Method in class javax.xml.ws.Service
Creates a Dispatch instance for use with JAXB generated objects.

D

Dispatch<T> - Interface in javax.xml.ws
The Dispatch interface provides support for the dynamic invocation of a service endpoint operations.

E

enabled - Variable in class javax.xml.ws.WebServiceFeature
Specifies if the feature is enabled or disabled
Endpoint - Class in javax.xml.ws
A Web service endpoint.
Endpoint() - Constructor for class javax.xml.ws.Endpoint
 
ENDPOINT_ADDRESS_PROPERTY - Static variable in interface javax.xml.ws.BindingProvider
Standard property: Target service endpoint address.
EndpointReference - Class in javax.xml.ws
This class represents an WS-Addressing EndpointReference which is a remote reference to a web service endpoint.
EndpointReference() - Constructor for class javax.xml.ws.EndpointReference
 

F

FaultAction - Annotation Type in javax.xml.ws
The FaultAction annotation is used inside an Action annotation to allow an explicit association of a WS-Addressing Action message addressing property with the fault messages of the WSDL operation mapped from the exception class.

G

getBinding() - Method in interface javax.xml.ws.BindingProvider
Get the Binding for this binding provider.
getBinding() - Method in class javax.xml.ws.Endpoint
Returns the binding for this endpoint.
getBindingID() - Method in interface javax.xml.ws.Binding
Get the URI for this binding instance.
getContext() - Method in interface javax.xml.ws.Response
Gets the contained response context.
getEndpointReference() - Method in interface javax.xml.ws.BindingProvider
Returns the EndpointReference associated with this BindingProvider instance.
getEndpointReference(Class<T>) - Method in interface javax.xml.ws.BindingProvider
Returns the EndpointReference associated with this BindingProvider instance.
getEndpointReference(Element...) - Method in class javax.xml.ws.Endpoint
Returns the EndpointReference associated with this Endpoint instance.
getEndpointReference(Class<T>, Element...) - Method in class javax.xml.ws.Endpoint
Returns the EndpointReference associated with this Endpoint instance.
getEndpointReference(Element...) - Method in interface javax.xml.ws.WebServiceContext
Returns the EndpointReference for this endpoint.
getEndpointReference(Class<T>, Element...) - Method in interface javax.xml.ws.WebServiceContext
Returns the EndpointReference associated with this endpoint.
getExecutor() - Method in class javax.xml.ws.Endpoint
Returns the executor for this Endpointinstance.
getExecutor() - Method in class javax.xml.ws.Service
Returns the executor for this Serviceinstance.
getHandlerChain() - Method in interface javax.xml.ws.Binding
Gets a copy of the handler chain for a protocol binding instance.
getHandlerResolver() - Method in class javax.xml.ws.Service
Returns the configured handler resolver.
getID() - Method in class javax.xml.ws.RespectBindingFeature
Get the unique identifier for this WebServiceFeature.
getID() - Method in class javax.xml.ws.WebServiceFeature
Get the unique identifier for this WebServiceFeature.
getImplementor() - Method in class javax.xml.ws.Endpoint
Returns the implementation object for this endpoint.
getMessageContext() - Method in interface javax.xml.ws.WebServiceContext
Returns the MessageContext for the request being served at the time this method is called.
getMetadata() - Method in class javax.xml.ws.Endpoint
Returns a list of metadata documents for the service.
getPayload() - Method in interface javax.xml.ws.LogicalMessage
Gets the message payload as an XML source, may be called multiple times on the same LogicalMessage instance, always returns a new Source that may be used to retrieve the entire message payload.
getPayload(JAXBContext) - Method in interface javax.xml.ws.LogicalMessage
Gets the message payload as a JAXB object.
getPort(Class<T>, WebServiceFeature...) - Method in class javax.xml.ws.EndpointReference
The getPort method returns a proxy.
getPort(QName, Class<T>) - Method in class javax.xml.ws.Service
The getPort method returns a proxy.
getPort(QName, Class<T>, WebServiceFeature...) - Method in class javax.xml.ws.Service
The getPort method returns a proxy.
getPort(Class<T>) - Method in class javax.xml.ws.Service
The getPort method returns a proxy.
getPort(Class<T>, WebServiceFeature...) - Method in class javax.xml.ws.Service
The getPort method returns a proxy.
getPort(EndpointReference, Class<T>, WebServiceFeature...) - Method in class javax.xml.ws.Service
The getPort method returns a proxy.
getPorts() - Method in class javax.xml.ws.Service
Returns an Iterator for the list of QNames of service endpoints grouped by this service
getProperties() - Method in class javax.xml.ws.Endpoint
Returns the property bag for this Endpoint instance.
getRequestContext() - Method in interface javax.xml.ws.BindingProvider
Get the context that is used to initialize the message context for request messages.
getResponseContext() - Method in interface javax.xml.ws.BindingProvider
Get the context that resulted from processing a response message.
getServiceName() - Method in class javax.xml.ws.Service
Gets the name of this service.
getUserPrincipal() - Method in interface javax.xml.ws.WebServiceContext
Returns the Principal that identifies the sender of the request currently being serviced.
getWSDLDocumentLocation() - Method in class javax.xml.ws.Service
Gets the location of the WSDL document for this Service.

H

handleResponse(Response<T>) - Method in interface javax.xml.ws.AsyncHandler
Called when the response to an asynchronous operation is available.
Holder<T> - Class in javax.xml.ws
Holds a value of type T.
Holder() - Constructor for class javax.xml.ws.Holder
Creates a new holder with a null value.
Holder(T) - Constructor for class javax.xml.ws.Holder
Create a new holder with the specified value.

I

ID - Static variable in class javax.xml.ws.RespectBindingFeature
Constant value identifying the RespectBindingFeature
invoke(T) - Method in interface javax.xml.ws.Dispatch
Invoke a service operation synchronously.
invoke(T) - Method in interface javax.xml.ws.Provider
Invokes an operation occording to the contents of the request message.
invokeAsync(T) - Method in interface javax.xml.ws.Dispatch
Invoke a service operation asynchronously.
invokeAsync(T, AsyncHandler<T>) - Method in interface javax.xml.ws.Dispatch
Invoke a service operation asynchronously.
invokeOneWay(T) - Method in interface javax.xml.ws.Dispatch
Invokes a service operation using the one-way interaction mode.
isEnabled() - Method in class javax.xml.ws.WebServiceFeature
Returns true if this feature is enabled.
isPublished() - Method in class javax.xml.ws.Endpoint
Returns true if the endpoint is in the published state.
isUserInRole(String) - Method in interface javax.xml.ws.WebServiceContext
Returns a boolean indicating whether the authenticated user is included in the specified logical role.

J

javax.xml.ws - package javax.xml.ws
This package contains the core JAX-WS APIs.

L

LogicalMessage - Interface in javax.xml.ws
The LogicalMessage interface represents a protocol agnostic XML message and contains methods that provide access to the payload of the message.

P

PASSWORD_PROPERTY - Static variable in interface javax.xml.ws.BindingProvider
Standard property: Password for authentication.
ProtocolException - Exception in javax.xml.ws
The ProtocolException class is a base class for exceptions related to a specific protocol binding.
ProtocolException() - Constructor for exception javax.xml.ws.ProtocolException
Constructs a new protocol exception with null as its detail message.
ProtocolException(String) - Constructor for exception javax.xml.ws.ProtocolException
Constructs a new protocol exception with the specified detail message.
ProtocolException(String, Throwable) - Constructor for exception javax.xml.ws.ProtocolException
Constructs a new runtime exception with the specified detail message and cause.
ProtocolException(Throwable) - Constructor for exception javax.xml.ws.ProtocolException
Constructs a new runtime exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
Provider<T> - Interface in javax.xml.ws
Service endpoints may implement the Provider interface as a dynamic alternative to an SEI.
publish(String) - Method in class javax.xml.ws.Endpoint
Publishes this endpoint at the given address.
publish(String, Object) - Static method in class javax.xml.ws.Endpoint
Creates and publishes an endpoint for the specified implementor object at the given address.
publish(Object) - Method in class javax.xml.ws.Endpoint
Publishes this endpoint at the provided server context.

R

readFrom(Source) - Static method in class javax.xml.ws.EndpointReference
Factory method to read an EndpointReference from the infoset contained in eprInfoset.
RequestWrapper - Annotation Type in javax.xml.ws
Used to annotate methods in the Service Endpoint Interface with the request wrapper bean to be used at runtime.
RespectBinding - Annotation Type in javax.xml.ws
This feature clarifies the use of the wsdl:binding in a JAX-WS runtime.
RespectBindingFeature - Class in javax.xml.ws
This feature clarifies the use of the wsdl:binding in a JAX-WS runtime.
RespectBindingFeature() - Constructor for class javax.xml.ws.RespectBindingFeature
Creates an RespectBindingFeature.
RespectBindingFeature(boolean) - Constructor for class javax.xml.ws.RespectBindingFeature
Creates an RespectBindingFeature
Response<T> - Interface in javax.xml.ws
The Response interface provides methods used to obtain the payload and context of a message sent in response to an operation invocation.
ResponseWrapper - Annotation Type in javax.xml.ws
Used to annotate methods in the Service Endpoint Interface with the response wrapper bean to be used at runtime.

S

Service - Class in javax.xml.ws
Service objects provide the client view of a Web service.
Service(URL, QName) - Constructor for class javax.xml.ws.Service
 
Service.Mode - Enum in javax.xml.ws
The orientation of a dynamic client or service.
ServiceMode - Annotation Type in javax.xml.ws
Used to indicate whether a Provider implementation wishes to work with entire protocol messages or just with protocol message payloads.
SESSION_MAINTAIN_PROPERTY - Static variable in interface javax.xml.ws.BindingProvider
Standard property: This boolean property is used by a service client to indicate whether or not it wants to participate in a session with a service endpoint.
setExecutor(Executor) - Method in class javax.xml.ws.Endpoint
Sets the executor for this Endpoint instance.
setExecutor(Executor) - Method in class javax.xml.ws.Service
Sets the executor for this Service instance.
setHandlerChain(List<Handler>) - Method in interface javax.xml.ws.Binding
Sets the handler chain for the protocol binding instance.
setHandlerResolver(HandlerResolver) - Method in class javax.xml.ws.Service
Sets the HandlerResolver for this Service instance.
setMetadata(List<Source>) - Method in class javax.xml.ws.Endpoint
Sets the metadata for this endpoint.
setPayload(Source) - Method in interface javax.xml.ws.LogicalMessage
Sets the message payload
setPayload(Object, JAXBContext) - Method in interface javax.xml.ws.LogicalMessage
Sets the message payload
setProperties(Map<String, Object>) - Method in class javax.xml.ws.Endpoint
Sets the property bag for this Endpoint instance.
SOAPACTION_URI_PROPERTY - Static variable in interface javax.xml.ws.BindingProvider
Standard property for SOAPAction.
SOAPACTION_USE_PROPERTY - Static variable in interface javax.xml.ws.BindingProvider
Standard property for SOAPAction.
stop() - Method in class javax.xml.ws.Endpoint
Stops publishing this endpoint.

T

toString() - Method in class javax.xml.ws.EndpointReference
Displays EPR infoset for debugging convenience.

U

USERNAME_PROPERTY - Static variable in interface javax.xml.ws.BindingProvider
Standard property: User name for authentication.

V

value - Variable in class javax.xml.ws.Holder
The value contained in the holder.
valueOf(String) - Static method in enum javax.xml.ws.Service.Mode
Returns the enum constant of this type with the specified name.
values() - Static method in enum javax.xml.ws.Service.Mode
Returns an array containing the constants of this enum type, in the order they are declared.

W

WebEndpoint - Annotation Type in javax.xml.ws
Used to annotate the getPortName() methods of a generated service interface.
WebFault - Annotation Type in javax.xml.ws
Used to annotate service specific exception classes to customize to the local and namespace name of the fault element and the name of the fault bean.
WebServiceClient - Annotation Type in javax.xml.ws
Used to annotate a generated service interface.
WebServiceContext - Interface in javax.xml.ws
A WebServiceContext makes it possible for a web service endpoint implementation class to access message context and security information relative to a request being served.
WebServiceException - Exception in javax.xml.ws
The WebServiceException class is the base exception class for all JAX-WS API runtime exceptions.
WebServiceException() - Constructor for exception javax.xml.ws.WebServiceException
Constructs a new exception with null as its detail message.
WebServiceException(String) - Constructor for exception javax.xml.ws.WebServiceException
Constructs a new exception with the specified detail message.
WebServiceException(String, Throwable) - Constructor for exception javax.xml.ws.WebServiceException
Constructs a new exception with the specified detail message and cause.
WebServiceException(Throwable) - Constructor for exception javax.xml.ws.WebServiceException
Constructs a new WebServiceException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
WebServiceFeature - Class in javax.xml.ws
A WebServiceFeature is used to represent a feature that can be enabled or disabled for a web service.
WebServiceFeature() - Constructor for class javax.xml.ws.WebServiceFeature
 
WebServicePermission - Class in javax.xml.ws
This class defines web service permissions.
WebServicePermission(String) - Constructor for class javax.xml.ws.WebServicePermission
Creates a new permission with the specified name.
WebServicePermission(String, String) - Constructor for class javax.xml.ws.WebServicePermission
Creates a new permission with the specified name and actions.
WebServiceProvider - Annotation Type in javax.xml.ws
Used to annotate a Provider implementation class.
WebServiceRef - Annotation Type in javax.xml.ws
The WebServiceRef annotation is used to define a reference to a web service and (optionally) an injection target for it.
WebServiceRefs - Annotation Type in javax.xml.ws
The WebServiceRefs annotation allows multiple web service references to be declared at the class level.
writeTo(Result) - Method in class javax.xml.ws.EndpointReference
write this EndpointReference to the specified infoset format
WSDL_PORT - Static variable in class javax.xml.ws.Endpoint
Standard property: name of WSDL port.
WSDL_SERVICE - Static variable in class javax.xml.ws.Endpoint
Standard property: name of WSDL service.
A B C D E F G H I J L P R S T U V W