< prev index next >

src/java.xml.ws/share/classes/javax/xml/ws/handler/HandlerResolver.java

Print this page

        

*** 24,42 **** */ package javax.xml.ws.handler; /** ! * <code>HandlerResolver</code> is an interface implemented * by an application to get control over the handler chain * set on proxy/dispatch objects at the time of their creation. * <p> ! * A <code>HandlerResolver</code> may be set on a <code>Service</code> ! * using the <code>setHandlerResolver</code> method. * <p> ! * When the runtime invokes a <code>HandlerResolver</code>, it will ! * pass it a <code>PortInfo</code> object containing information * about the port that the proxy/dispatch object will be accessing. * * @see javax.xml.ws.Service#setHandlerResolver * * @since 1.6, JAX-WS 2.0 --- 24,42 ---- */ package javax.xml.ws.handler; /** ! * {@code HandlerResolver} is an interface implemented * by an application to get control over the handler chain * set on proxy/dispatch objects at the time of their creation. * <p> ! * A {@code HandlerResolver} may be set on a {@code Service} ! * using the {@code setHandlerResolver} method. * <p> ! * When the runtime invokes a {@code HandlerResolver}, it will ! * pass it a {@code PortInfo} object containing information * about the port that the proxy/dispatch object will be accessing. * * @see javax.xml.ws.Service#setHandlerResolver * * @since 1.6, JAX-WS 2.0
*** 45,53 **** /** * Gets the handler chain for the specified port. * * @param portInfo Contains information about the port being accessed. ! * @return java.util.List&lt;Handler> chain **/ public java.util.List<Handler> getHandlerChain(PortInfo portInfo); } --- 45,53 ---- /** * Gets the handler chain for the specified port. * * @param portInfo Contains information about the port being accessed. ! * @return {@code java.util.List<Handler>} chain **/ public java.util.List<Handler> getHandlerChain(PortInfo portInfo); }
< prev index next >