📄 i_driver.java
字号:
/*------------------------------------------------------------------------------Name: I_Driver.javaProject: xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE fileComment: Interface hiding the real callback protocolVersion: $Id: I_Driver.java 13851 2005-10-22 17:32:15Z laghi $Author: xmlBlaster@marcelruff.info------------------------------------------------------------------------------*/package org.xmlBlaster.protocol;import org.xmlBlaster.util.plugin.I_Plugin;import org.xmlBlaster.util.XmlBlasterException;/** * This interface hides the real protocol used to invoke xmlBlaster. * <p> * * @version $Revision: 1.12 $ * @author xmlBlaster@marcelruff.info */public interface I_Driver extends I_Plugin{ /** Get a human readable name of this driver */ public String getName(); /** * Access the xmlBlaster internal name of the protocol driver. * @return e.g. "IOR" "EMAIL" "XMLRPC" depending on driver */ public String getProtocolId(); /** * Return the address how to access this driver. * @return e.g. "http:/www.mars.universe:8080/RPC2" or "IOR:000034100..." */ public String getRawAddress(); /** * Activate xmlBlaster access through this protocol so that a client can contact us. */ public void activate() throws XmlBlasterException; /** * Deactivate xmlBlaster access (standby), no clients can connect. */ public void deActivate() throws XmlBlasterException; /** * The startup usage text. * <p /> */ public String usage();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -