congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
ProcessEnginePlugin.preInit
Code IndexAdd Tabnine to your IDE (free)

How to use
preInit
method
in
org.camunda.bpm.engine.impl.cfg.ProcessEnginePlugin

Best Java code snippets using org.camunda.bpm.engine.impl.cfg.ProcessEnginePlugin.preInit (Showing top 9 results out of 315)

origin: camunda/camunda-bpm-platform

@Override
public void preInit(ProcessEngineConfigurationImpl processEngineConfiguration) {
 for (ProcessEnginePlugin plugin : plugins) {
  plugin.preInit(processEngineConfiguration);
 }
}
origin: camunda/camunda-bpm-platform

@Override
public void preInit(ProcessEngineConfigurationImpl processEngineConfiguration) {
 for (ProcessEnginePlugin plugin : plugins) {
  plugin.preInit(processEngineConfiguration);
 }
}
origin: camunda/camunda-bpm-platform

protected void invokePreInit() {
 for (ProcessEnginePlugin plugin : processEnginePlugins) {
  LOG.pluginActivated(plugin.toString(), getProcessEngineName());
  plugin.preInit(this);
 }
}
origin: camunda/camunda-bpm-platform

protected void invokePreInit() {
 for (ProcessEnginePlugin plugin : processEnginePlugins) {
  LOG.pluginActivated(plugin.toString(), getProcessEngineName());
  plugin.preInit(this);
 }
}
origin: camunda/camunda-bpm-platform

@Test
public void allPluginsOnPreInit() throws Exception {
 new CompositeProcessEnginePlugin(PLUGIN_A, PLUGIN_B).preInit(CONFIGURATION);
 ORDER.verify(PLUGIN_A).preInit(CONFIGURATION);
 ORDER.verify(PLUGIN_B).preInit(CONFIGURATION);
}
origin: org.camunda.bpm/camunda-engine

@Override
public void preInit(ProcessEngineConfigurationImpl processEngineConfiguration) {
 for (ProcessEnginePlugin plugin : plugins) {
  plugin.preInit(processEngineConfiguration);
 }
}
origin: org.camunda.bpm/camunda-engine

protected void invokePreInit() {
 for (ProcessEnginePlugin plugin : processEnginePlugins) {
  LOG.pluginActivated(plugin.toString(), getProcessEngineName());
  plugin.preInit(this);
 }
}
origin: org.camunda.bpm/camunda-engine

@Test
public void allPluginsOnPreInit() throws Exception {
 new CompositeProcessEnginePlugin(PLUGIN_A, PLUGIN_B).preInit(CONFIGURATION);
 ORDER.verify(PLUGIN_A).preInit(CONFIGURATION);
 ORDER.verify(PLUGIN_B).preInit(CONFIGURATION);
}
origin: camunda/camunda-bpm-reactor

public void register(final ProcessEnginePlugin processEnginePlugin) {
 eventBus.on(Selectors.type(PreInitEvent.class), (Consumer<PreInitEvent>) event -> processEnginePlugin.preInit(event.getData()));
 eventBus.on(Selectors.type(PostInitEvent.class), (Consumer<PostInitEvent>) event -> processEnginePlugin.postInit(event.getData()));
 eventBus.on(Selectors.type(PostProcessEngineBuild.class), (Consumer<PostProcessEngineBuild>) event -> processEnginePlugin.postProcessEngineBuild(event.getData()));
}
org.camunda.bpm.engine.impl.cfgProcessEnginePluginpreInit

Javadoc

Invoked before the process engine configuration is initialized.

Popular methods of ProcessEnginePlugin

  • postInit
    Invoked after the process engine configuration is initialized. and before the process engine is buil
  • postProcessEngineBuild
    Invoked after the process engine has been built.

Popular in Java

  • Creating JSON documents from java classes using gson
  • getSharedPreferences (Context)
  • scheduleAtFixedRate (Timer)
  • setContentView (Activity)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now