Package org.camunda.bpm.engine.impl.cfg
Interface ProcessEnginePlugin
-
- All Known Implementing Classes:
AbstractProcessEnginePlugin,AdministratorAuthorizationPlugin,CompositeProcessEnginePlugin,ProcessApplicationEventListenerPlugin
public interface ProcessEnginePluginA process engine plugin allows customizing the process engine
- Author:
- Daniel Meyer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpostInit(ProcessEngineConfigurationImpl processEngineConfiguration)Invoked after the process engine configuration is initialized.voidpostProcessEngineBuild(ProcessEngine processEngine)Invoked after the process engine has been built.voidpreInit(ProcessEngineConfigurationImpl processEngineConfiguration)Invoked before the process engine configuration is initialized.
-
-
-
Method Detail
-
preInit
void preInit(ProcessEngineConfigurationImpl processEngineConfiguration)
Invoked before the process engine configuration is initialized.
- Parameters:
processEngineConfiguration- the process engine configuation
-
postInit
void postInit(ProcessEngineConfigurationImpl processEngineConfiguration)
Invoked after the process engine configuration is initialized. and before the process engine is built.
- Parameters:
processEngineConfiguration- the process engine configuation
-
postProcessEngineBuild
void postProcessEngineBuild(ProcessEngine processEngine)
Invoked after the process engine has been built.
- Parameters:
processEngine-
-
-