i_adminplugin.java

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

JAVA
39
字号
/*------------------------------------------------------------------------------Name:      I_AdminPlugin.javaProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.util.admin;/** * Declares available methods to control arbitrary plugins.    * * @author xmlBlaster@marcelruff.info * @since 1.0.8 */public interface I_AdminPlugin extends I_AdminUsage {   /**    * The unique name of the plugin (together with the version).     * @return For example "IOR"    */   public java.lang.String getType();      /**    * The version of the plugin    * @return For example "1.0"    */   public java.lang.String getVersion();   /**    * Shutdown the plugin, free resources.    */   public void shutdown() throws Exception;   /**    * Check status     * @return true if down    */   public boolean isShutdown();}

⌨️ 快捷键说明

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