jaxws/src/java.xml.ws/share/classes/javax/xml/ws/handler/HandlerResolver.java
changeset 30005 b2f720a258c4
parent 25871 b80b84e87032
equal deleted inserted replaced
29963:ac3f5a39d4ff 30005:b2f720a258c4
    24  */
    24  */
    25 
    25 
    26 package javax.xml.ws.handler;
    26 package javax.xml.ws.handler;
    27 
    27 
    28 /**
    28 /**
    29  *  <code>HandlerResolver</code> is an interface implemented
    29  *  {@code HandlerResolver} is an interface implemented
    30  *  by an application to get control over the handler chain
    30  *  by an application to get control over the handler chain
    31  *  set on proxy/dispatch objects at the time of their creation.
    31  *  set on proxy/dispatch objects at the time of their creation.
    32  *  <p>
    32  *  <p>
    33  *  A <code>HandlerResolver</code> may be set on a <code>Service</code>
    33  *  A {@code HandlerResolver} may be set on a {@code Service}
    34  *  using the <code>setHandlerResolver</code> method.
    34  *  using the {@code setHandlerResolver} method.
    35  * <p>
    35  *  <p>
    36  *  When the runtime invokes a <code>HandlerResolver</code>, it will
    36  *  When the runtime invokes a {@code HandlerResolver}, it will
    37  *  pass it a <code>PortInfo</code> object containing information
    37  *  pass it a {@code PortInfo} object containing information
    38  *  about the port that the proxy/dispatch object will be accessing.
    38  *  about the port that the proxy/dispatch object will be accessing.
    39  *
    39  *
    40  *  @see javax.xml.ws.Service#setHandlerResolver
    40  *  @see javax.xml.ws.Service#setHandlerResolver
    41  *
    41  *
    42  *  @since 1.6, JAX-WS 2.0
    42  *  @since 1.6, JAX-WS 2.0
    45 
    45 
    46   /**
    46   /**
    47    *  Gets the handler chain for the specified port.
    47    *  Gets the handler chain for the specified port.
    48    *
    48    *
    49    *  @param portInfo Contains information about the port being accessed.
    49    *  @param portInfo Contains information about the port being accessed.
    50    *  @return java.util.List&lt;Handler> chain
    50    *  @return {@code java.util.List<Handler>} chain
    51   **/
    51   **/
    52   public java.util.List<Handler> getHandlerChain(PortInfo portInfo);
    52   public java.util.List<Handler> getHandlerChain(PortInfo portInfo);
    53 }
    53 }