Package org.camunda.bpm.engine.impl.cfg
Interface ProcessEnginePlugin
- All Known Implementing Classes:
AbstractProcessEnginePlugin,AdministratorAuthorizationPlugin,CompositeProcessEnginePlugin,ProcessApplicationEventListenerPlugin
public interface ProcessEnginePlugin
A process engine plugin allows customizing the process engine
- Author:
- Daniel Meyer
-
Method Summary
Modifier and TypeMethodDescriptionvoidpostInit(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 Details
-
preInit
Invoked before the process engine configuration is initialized.
- Parameters:
processEngineConfiguration- the process engine configuation
-
postInit
Invoked after the process engine configuration is initialized. and before the process engine is built.
- Parameters:
processEngineConfiguration- the process engine configuation
-
postProcessEngineBuild
Invoked after the process engine has been built.
- Parameters:
processEngine-
-