📄 i_externgateway.java
字号:
/*------------------------------------------------------------------------------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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -