Class LifecyclePluginModuleDescriptor
- java.lang.Object
-
- com.atlassian.plugin.descriptors.AbstractModuleDescriptor
-
- com.atlassian.confluence.impl.setup.LifecyclePluginModuleDescriptor
-
- All Implemented Interfaces:
com.atlassian.plugin.ModuleDescriptor
,com.atlassian.plugin.Resourced
,com.atlassian.plugin.ScopeAware
,com.atlassian.plugin.StateAware
,Comparable<LifecyclePluginModuleDescriptor>
public class LifecyclePluginModuleDescriptor extends com.atlassian.plugin.descriptors.AbstractModuleDescriptor implements Comparable<LifecyclePluginModuleDescriptor>
Descriptor for lifecycle plugin modules.A lifecycle plugin module must either implement
LifecycleItem
, orServletContextListener
. The latter will automatically be wrapped in aServletContextListenerWrapper
by the descriptor, sogetModule()
will always return a LifecycleItem instance.Each module has a sequence number. On startup, the modules will be invoked in ascending order of sequence (lowest to highest), and then on shutdown, the order will be reversed.
- Since:
- 6.6.0
-
-
Constructor Summary
Constructors Constructor Description LifecyclePluginModuleDescriptor(com.atlassian.plugin.module.ModuleFactory moduleFactory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(LifecyclePluginModuleDescriptor o)
void
disabled()
void
enabled()
Object
getModule()
int
getSequence()
void
init(com.atlassian.plugin.Plugin plugin, org.dom4j.Element element)
-
Methods inherited from class com.atlassian.plugin.descriptors.AbstractModuleDescriptor
assertModuleClassImplements, checkPermissions, destroy, equals, getCompleteKey, getDescription, getDescriptionKey, getI18nNameKey, getKey, getMinJavaVersion, getModuleClass, getModuleClassName, getName, getParams, getPlugin, getPluginKey, getRequiredPermissions, getResourceDescriptor, getResourceDescriptors, getResourceLocation, getScopeKey, hashCode, isBroken, isEnabled, isEnabledByDefault, isSystemModule, loadClass, provideValidationRules, satisfiesMinJavaVersion, setBroken, setPlugin, toString
-
-
-
-
Method Detail
-
init
public void init(com.atlassian.plugin.Plugin plugin, org.dom4j.Element element) throws com.atlassian.plugin.PluginParseException
- Specified by:
init
in interfacecom.atlassian.plugin.ModuleDescriptor
- Overrides:
init
in classcom.atlassian.plugin.descriptors.AbstractModuleDescriptor
- Throws:
com.atlassian.plugin.PluginParseException
-
getModule
public Object getModule()
- Specified by:
getModule
in interfacecom.atlassian.plugin.ModuleDescriptor
- Specified by:
getModule
in classcom.atlassian.plugin.descriptors.AbstractModuleDescriptor
-
enabled
public void enabled()
- Specified by:
enabled
in interfacecom.atlassian.plugin.StateAware
- Overrides:
enabled
in classcom.atlassian.plugin.descriptors.AbstractModuleDescriptor
-
disabled
public void disabled()
- Specified by:
disabled
in interfacecom.atlassian.plugin.StateAware
- Overrides:
disabled
in classcom.atlassian.plugin.descriptors.AbstractModuleDescriptor
-
getSequence
public int getSequence()
-
compareTo
public int compareTo(LifecyclePluginModuleDescriptor o)
- Specified by:
compareTo
in interfaceComparable<LifecyclePluginModuleDescriptor>
-
-