| edu.iu.uis.eden.plugin.PluginLoader
All known Subclasses: edu.iu.uis.eden.plugin.ClassLoaderPluginLoader, edu.iu.uis.eden.plugin.BasePluginLoader,
PluginLoader | public interface PluginLoader extends Modifiable(Code) | | Loads a plugin from some source (i.e. filesytem, classpath, network...)
author: Eric Westfall |
Method Summary | |
public boolean | isRemoved() Returns true if the Plugin loaded by this loader has been removed (for example, it was
deleted from the file system which should result in the plugin being undeployed). | public Plugin | load() Loads the plugin, this method should NOT invoke any of the Lifecycle methods of the plugin
before returning it to the calling code. | public void | setPluginManifestPath(String pluginManifestPath) |
isRemoved | public boolean isRemoved()(Code) | | Returns true if the Plugin loaded by this loader has been removed (for example, it was
deleted from the file system which should result in the plugin being undeployed).
|
load | public Plugin load() throws Exception(Code) | | Loads the plugin, this method should NOT invoke any of the Lifecycle methods of the plugin
before returning it to the calling code.
|
setPluginManifestPath | public void setPluginManifestPath(String pluginManifestPath)(Code) | | |
|
|