handlerresolver.java

来自「Mobile 应用程序使用 Java Micro Edition (Java M」· Java 代码 · 共 34 行

JAVA
34
字号
/* * Copyright 2007 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */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 JAX-WS 2.0**/public interface HandlerResolver {  /**    *  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);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?