This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.xml.ws
interface Binding

All Known Subinterfaces:
HTTPBinding, SOAPBinding

public interface Binding

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


Method Summary
 String

          Get the URI for this binding instance.
 List

          Gets a copy of the handler chain for a protocol binding instance.
 void

          Sets the handler chain for the protocol binding instance.
 

Method Detail

getBindingID

public String getBindingID()
Get the URI for this binding instance.

Returns:
String The binding identifier for the port. Never returns null

getHandlerChain

public List getHandlerChain()
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.

Returns:
java.util.List<Handler> Handler chain

setHandlerChain

public void setHandlerChain(List chain)
Sets the handler chain for the protocol binding instance.

Parameters:
chain - A List of handler configuration entries


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.