FileDocCategorySizeDatePackage
Binding.javaAPI DocJava SE 6 API1485Tue Jun 10 00:27:14 BST 2008javax.xml.ws

Binding

public interface Binding
The Binding interface is the base interface for JAX-WS protocol bindings.
since
JAX-WS 2.0

Fields Summary
Constructors Summary
Methods Summary
public java.lang.StringgetBindingID()
Get the URI for this binding instance.

return
String The binding identifier for the port. Never returns null
since
JAX-WS 2.1

public java.util.ListgetHandlerChain()
Gets a copy of the handler chain for a protocol binding instance. If the returned chain is modified a call to setHandlerChain is required to configure the binding instance with the new chain.

return
java.util.List<Handler> Handler chain

public voidsetHandlerChain(java.util.List chain)
Sets the handler chain for the protocol binding instance.

param
chain A List of handler configuration entries
throws
WebServiceException On an error in the configuration of the handler chain
throws
java.lang.UnsupportedOperationException If this operation is not supported. This may be done to avoid any overriding of a pre-configured handler chain.