⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 handlerresolver.java

📁 Mobile 应用程序使用 Java Micro Edition (Java ME) 平台
💻 JAVA
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -