invoker.java

来自「Xfire文件 用于开发web service 的一个开源工具 很好用的」· Java 代码 · 共 21 行

JAVA
21
字号
package org.codehaus.xfire.service.invoker;import java.lang.reflect.Method;import org.codehaus.xfire.MessageContext;import org.codehaus.xfire.fault.XFireFault;/** * The invoker class allows you to control how your service class is invoked. * For instance, you could supply an alternate instance which used a Factory to * create your service instead of XFire instantiating it. *   * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a> * @since Nov 16, 2004 */public interface Invoker{    Object invoke( Method m, Object[] params, MessageContext context )    	throws XFireFault;}

⌨️ 快捷键说明

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