i_externgateway.java

来自「java开源的企业总线.xmlBlaster」· Java 代码 · 共 35 行

JAVA
35
字号
/*------------------------------------------------------------------------------Name:      I_ExternGateway.javaProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE fileComment:   Interface to hide extern gateway implementations------------------------------------------------------------------------------*/package org.xmlBlaster.engine.admin;import org.xmlBlaster.util.XmlBlasterException;import org.xmlBlaster.engine.ServerScope;/** * Interface to allow different external gateway implementations.  * <p /> * @author xmlBlaster@marcelruff.info * @since 0.79f */public interface I_ExternGateway {   /**    * This is called after creation of the plugin.     * <p />    * You should register yourself with commandManager.register() during initialization.    *    * @param glob The Global handle of this xmlBlaster server instance.    * @param commandManager My manager    * @return false Ignore this implementation (gateway is switched off)    */   public boolean initialize(ServerScope glob, CommandManager commandManager) throws XmlBlasterException;   /** Get a human readable name of this filter implementation */   public String getName();   public void shutdown();}

⌨️ 快捷键说明

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