Package jetbrains.buildServer.plugins
Class PluginLifecycleListenerAdapter
- java.lang.Object
-
- jetbrains.buildServer.plugins.PluginLifecycleListenerAdapter
-
- All Implemented Interfaces:
EventListener
,PluginLifecycleListener
public class PluginLifecycleListenerAdapter extends Object implements PluginLifecycleListener
-
-
Constructor Summary
Constructors Constructor Description PluginLifecycleListenerAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
beforePluginUnloaded()
Called before plugin unload is started.void
pluginLoaded()
Called after plugin is loaded successfully.
-
-
-
Method Detail
-
pluginLoaded
public void pluginLoaded()
Description copied from interface:PluginLifecycleListener
Called after plugin is loaded successfully. PluginStateProvider now treats current plugin as loaded and all other version of the plugin are updated.- Specified by:
pluginLoaded
in interfacePluginLifecycleListener
-
beforePluginUnloaded
public void beforePluginUnloaded()
Description copied from interface:PluginLifecycleListener
Called before plugin unload is started. Not triggered when shutting down the server and shouldn't be used for plugin resources cleanup.- Specified by:
beforePluginUnloaded
in interfacePluginLifecycleListener
-
-