PROXY  WHOIS  RQUOTE  TEXTS  SOFT  FOREX  BBOARD
 Music  Philosophy  Code  Literature  Russian

= ROOT|Technical|Code_Examples|Java|javax|xml|ws|Binding.java =

page 1 of 1



/*
 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

package javax.xml.ws;

/** The <code>Binding</code> interface is the base interface
 *  for JAX-WS protocol bindings.
 *
 *  @since JAX-WS 2.0
**/
public interface Binding {

  /** Gets a copy of the handler chain for a protocol binding instance.
   *  If the returned chain is modified a call to <code>setHandlerChain</code>
   * is required to configure the binding instance with the new chain.
   *
   *  @return java.util.List<javax.xml.ws.handler.HandlerInfo> Handler chain
  **/
  public java.util.List<javax.xml.ws.handler.Handler> getHandlerChain();

  /** 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.
  **/
  public void setHandlerChain(java.util.List<javax.xml.ws.handler.Handler> chain);
}
=1=
THE END

<<< SINGLE PAGE >>>

UP TO ROOT | UP TO DIR

Google
 

E-mail Facebook Google Digg del.icio.us BlinkList Fark Furl Ma.gnolia Netscape NewsVine Reddit Slashdot Spurl StumbleUpon Technorati YahooMyWeb LiveJournal Blogmarks TwitThis Live News2.ru BobrDobr.ru Memori.ru MoeMesto.ru

0.0395069 wallclock secs ( 0.00 usr + 0.00 sys = 0.00 CPU)