Codota Logo
CompositeProcessEnginePlugin.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.camunda.bpm.engine.impl.cfg.CompositeProcessEnginePlugin
constructor

Best Java code snippets using org.camunda.bpm.engine.impl.cfg.CompositeProcessEnginePlugin.<init> (Showing top 14 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
FileOutputStream f =
  • Codota IconFile file;new FileOutputStream(file)
  • Codota IconString name;new FileOutputStream(name)
  • Codota IconFile file;new FileOutputStream(file, true)
  • Smart code suggestions by Codota
}
origin: camunda/camunda-bpm-platform

@Test
public void verifyToString() throws Exception {
 assertThat(new CompositeProcessEnginePlugin(PLUGIN_A, PLUGIN_B).toString(), is("CompositeProcessEnginePlugin[PluginA, PluginB]"));
}
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: camunda/camunda-bpm-platform

@Test
public void addPlugins() throws Exception {
 CompositeProcessEnginePlugin composite = new CompositeProcessEnginePlugin(PLUGIN_A);
 composite.addProcessEnginePlugins(Arrays.asList(PLUGIN_B));
 assertThat(composite.getPlugins().size(), is(2));
 assertThat(composite.getPlugins().get(0), is(PLUGIN_A));
 assertThat(composite.getPlugins().get(1), is(PLUGIN_B));
}
origin: camunda/camunda-bpm-platform

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

@Test
public void allPluginsOnPostProcessEngineBuild() throws Exception {
 new CompositeProcessEnginePlugin(PLUGIN_A, PLUGIN_B).postProcessEngineBuild(ENGINE);
 ORDER.verify(PLUGIN_A).postProcessEngineBuild(ENGINE);
 ORDER.verify(PLUGIN_B).postProcessEngineBuild(ENGINE);
}
origin: camunda/camunda-bpm-platform

@Test
public void addPlugin() throws Exception {
 CompositeProcessEnginePlugin composite = new CompositeProcessEnginePlugin(PLUGIN_A);
 assertThat(composite.getPlugins().size(), is(1));
 assertThat(composite.getPlugins().get(0), is(PLUGIN_A));
 composite.addProcessEnginePlugin(PLUGIN_B);
 assertThat(composite.getPlugins().size(), is(2));
 assertThat(composite.getPlugins().get(1), is(PLUGIN_B));
}
origin: camunda/camunda-bpm-spring-boot-starter

@Bean
@ConditionalOnMissingBean(ProcessEngineConfigurationImpl.class)
public ProcessEngineConfigurationImpl processEngineConfigurationImpl(List<ProcessEnginePlugin> processEnginePlugins) {
 final SpringProcessEngineConfiguration configuration = CamundaSpringBootUtil.springProcessEngineConfiguration();
 configuration.getProcessEnginePlugins().add(new CompositeProcessEnginePlugin(processEnginePlugins));
 return configuration;
}
origin: org.camunda.bpm.springboot/camunda-bpm-spring-boot-starter

@Bean
@ConditionalOnMissingBean(ProcessEngineConfigurationImpl.class)
public ProcessEngineConfigurationImpl processEngineConfigurationImpl(List<ProcessEnginePlugin> processEnginePlugins) {
 final SpringProcessEngineConfiguration configuration = CamundaSpringBootUtil.springProcessEngineConfiguration();
 configuration.getProcessEnginePlugins().add(new CompositeProcessEnginePlugin(processEnginePlugins));
 return configuration;
}
origin: org.camunda.bpm/camunda-engine

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

@Test
public void allPluginsOnPostInit() throws Exception {
 new CompositeProcessEnginePlugin(PLUGIN_A, PLUGIN_B).postInit(CONFIGURATION);
 ORDER.verify(PLUGIN_A).postInit(CONFIGURATION);
 ORDER.verify(PLUGIN_B).postInit(CONFIGURATION);
}
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: org.camunda.bpm/camunda-engine

@Test
public void verifyToString() throws Exception {
 assertThat(new CompositeProcessEnginePlugin(PLUGIN_A, PLUGIN_B).toString(), is("CompositeProcessEnginePlugin[PluginA, PluginB]"));
}
origin: org.camunda.bpm/camunda-engine

@Test
public void addPlugins() throws Exception {
 CompositeProcessEnginePlugin composite = new CompositeProcessEnginePlugin(PLUGIN_A);
 composite.addProcessEnginePlugins(Arrays.asList(PLUGIN_B));
 assertThat(composite.getPlugins().size(), is(2));
 assertThat(composite.getPlugins().get(0), is(PLUGIN_A));
 assertThat(composite.getPlugins().get(1), is(PLUGIN_B));
}
origin: org.camunda.bpm/camunda-engine

@Test
public void addPlugin() throws Exception {
 CompositeProcessEnginePlugin composite = new CompositeProcessEnginePlugin(PLUGIN_A);
 assertThat(composite.getPlugins().size(), is(1));
 assertThat(composite.getPlugins().get(0), is(PLUGIN_A));
 composite.addProcessEnginePlugin(PLUGIN_B);
 assertThat(composite.getPlugins().size(), is(2));
 assertThat(composite.getPlugins().get(1), is(PLUGIN_B));
}
org.camunda.bpm.engine.impl.cfgCompositeProcessEnginePlugin<init>

Javadoc

New instance with empty list.

Popular methods of CompositeProcessEnginePlugin

  • addProcessEnginePlugin
    Add one (or more) plugins.
  • addProcessEnginePlugins
    Add collection of plugins. If collection is not sortable, order of plugin execution can not be guara
  • toList
  • getPlugins
    Get all plugins.
  • postInit
  • postProcessEngineBuild
  • preInit
  • toString

Popular in Java

  • Making http post requests using okhttp
  • getContentResolver (Context)
  • getSystemService (Context)
  • getExternalFilesDir (Context)
  • InputStreamReader (java.io)
    An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and decodes
  • PrintStream (java.io)
    A PrintStream adds functionality to another output stream, namely the ability to print representatio
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement.A servlet is a small Java program that runs within
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now