Class AbstractDirigibleModule
java.lang.Object
org.eclipse.dirigible.commons.api.module.AbstractDirigibleModule
- All Implemented Interfaces:
DirigibleModule
public abstract class AbstractDirigibleModule extends Object implements DirigibleModule
The AbstractDirigibleModule is the parent of the Dirigible's Modules.
-
Field Summary
Fields inherited from interface org.eclipse.dirigible.commons.api.module.DirigibleModule
LOW_PRIORITY, PRIORITY_CONFIGURATION, PRIORITY_DATABASE, PRIORITY_DEFAULT, PRIORITY_ENGINE, PRIORITY_REPOSITORY -
Constructor Summary
Constructors Constructor Description AbstractDirigibleModule() -
Method Summary
Modifier and Type Method Description abstract voidconfigure()Runs the module initialization logic.abstract StringgetName()Gets the name.intgetPriority()Gets the priority.
-
Constructor Details
-
AbstractDirigibleModule
public AbstractDirigibleModule()
-
-
Method Details
-
getName
Gets the name.- Specified by:
getNamein interfaceDirigibleModule- Returns:
- the name
-
getPriority
public int getPriority()Gets the priority.- Specified by:
getPriorityin interfaceDirigibleModule- Returns:
- the priority
-
configure
public abstract void configure()Runs the module initialization logic.- Specified by:
configurein interfaceDirigibleModule
-