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
 void postInit(ProcessEngineConfigurationImpl processEngineConfiguration)
          Invoked after the process engine configuration is initialized.
 void postProcessEngineBuild(ProcessEngine processEngine)
          Invoked after the process engine has been built.
 void preInit(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 -


Copyright © 2017 camunda services GmbH. All rights reserved.