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

📄 runlevelpluginmanager.java

📁 java开源的企业总线.xmlBlaster
💻 JAVA
字号:
/*------------------------------------------------------------------------------Name:      RunlevelPluginManager.javaProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.engine.runlevel;import org.xmlBlaster.util.XmlBlasterException;import org.xmlBlaster.util.plugin.PluginManagerBase;import org.xmlBlaster.util.plugin.I_Plugin;import org.xmlBlaster.util.plugin.PluginInfo;/** * This class is used to load the static plugins, i.e. the plugins loaded by the  * RunlevelManager. * <p> * @author <a href="mailto:michele@laghi.eu">Michele Laghi</a> * @author <a href="mailto:xmlBlaster@marcelruff.info">Marcel Ruff</a> * @see <a href="http://www.xmlblaster.org/xmlBlaster/doc/requirements/engine.runlevel.html">engine.runlevel requirement</a> */public class RunlevelPluginManager extends PluginManagerBase {   public RunlevelPluginManager(org.xmlBlaster.util.Global glob) {      super(glob);   }   /**    * Is called after a plugin in instantiated, allows the base class to do specific actions.    * Is NOT called when plugin got from cache.    */   protected void postInstantiate(I_Plugin plugin, PluginInfo pluginInfo) throws XmlBlasterException {   }   /**    * @param type can be null    * @param version can be null    * @return please return your default plugin classname or null if not specified    */   public String getDefaultPluginName(String type, String version) {      return null;   }   /**   * @return The name of the property in xmlBlaster.property, e.g. "Security.Server.Plugin"   * for "Security.Server.Plugin[simple][1.0]"   */   protected String getPluginPropertyName() {      return null;   }}

⌨️ 快捷键说明

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