⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 i_adminplugin.java

📁 java开源的企业总线.xmlBlaster
💻 JAVA
字号:
/*------------------------------------------------------------------------------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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -