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

How to use
getProcessEngineName
method
in
org.camunda.bpm.engine.impl.cfg.ProcessEngineConfigurationImpl

Best Java code snippets using org.camunda.bpm.engine.impl.cfg.ProcessEngineConfigurationImpl.getProcessEngineName (Showing top 14 results out of 315)

origin: camunda/camunda-bpm-platform

protected DefaultProcessApplicationRegistration createProcessApplicationRegistration(Set<String> deploymentsToRegister, ProcessApplicationReference reference) {
 final String processEngineName = Context.getProcessEngineConfiguration().getProcessEngineName();
 DefaultProcessApplicationRegistration registration = new DefaultProcessApplicationRegistration(reference, deploymentsToRegister, processEngineName);
 // add to registration map
 for (String deploymentId : deploymentsToRegister) {
  registrationsByDeploymentId.put(deploymentId, registration);
 }
 return registration;
}
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 DefaultProcessApplicationRegistration createProcessApplicationRegistration(Set<String> deploymentsToRegister, ProcessApplicationReference reference) {
 final String processEngineName = Context.getProcessEngineConfiguration().getProcessEngineName();
 DefaultProcessApplicationRegistration registration = new DefaultProcessApplicationRegistration(reference, deploymentsToRegister, processEngineName);
 // add to registration map
 for (String deploymentId : deploymentsToRegister) {
  registrationsByDeploymentId.put(deploymentId, registration);
 }
 return registration;
}
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

public void preInit(ProcessEngineConfigurationImpl processEngineConfiguration) {
 LdapPluginLogger.INSTANCE.pluginActivated(getClass().getSimpleName(), processEngineConfiguration.getProcessEngineName());
 if(acceptUntrustedCertificates) {
  CertificateHelper.acceptUntrusted();
  LdapPluginLogger.INSTANCE.acceptingUntrustedCertificates();
 }
 LdapIdentityProviderFactory ldapIdentityProviderFactory = new LdapIdentityProviderFactory();
 ldapIdentityProviderFactory.setLdapConfiguration(this);
 processEngineConfiguration.setIdentityProviderSessionFactory(ldapIdentityProviderFactory);
}
origin: camunda/camunda-bpm-platform

serviceContainer.startService(ServiceTypes.PROCESS_ENGINE, configuration.getProcessEngineName(), managedProcessEngineService);
origin: camunda/camunda-bpm-platform

serviceContainer.startService(ServiceTypes.PROCESS_ENGINE, configuration.getProcessEngineName(), managedProcessEngineService);
origin: org.camunda.bpm/camunda-engine

protected DefaultProcessApplicationRegistration createProcessApplicationRegistration(Set<String> deploymentsToRegister, ProcessApplicationReference reference) {
 final String processEngineName = Context.getProcessEngineConfiguration().getProcessEngineName();
 DefaultProcessApplicationRegistration registration = new DefaultProcessApplicationRegistration(reference, deploymentsToRegister, processEngineName);
 // add to registration map
 for (String deploymentId : deploymentsToRegister) {
  registrationsByDeploymentId.put(deploymentId, registration);
 }
 return registration;
}
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.identity/camunda-identity-ldap

public void preInit(ProcessEngineConfigurationImpl processEngineConfiguration) {
 
 LOG.log(Level.INFO, "PLUGIN {0} activated on process engine {1}", new String[]{getClass().getSimpleName(), processEngineConfiguration.getProcessEngineName()});
 
 if(acceptUntrustedCertificates) {
  CertificateHelper.acceptUntrusted();
  LOG.log(Level.WARNING, "Enabling accept of untrusted certificates. Use at own risk.");
 }
 
 LdapIdentityProviderFactory ldapIdentityProviderFactory = new LdapIdentityProviderFactory();
 ldapIdentityProviderFactory.setLdapConfiguration(this);
 processEngineConfiguration.setIdentityProviderSessionFactory(ldapIdentityProviderFactory);
 
}
origin: camunda/camunda-bpm-platform

public ProcessEngineImpl(ProcessEngineConfigurationImpl processEngineConfiguration) {
 this.name = processEngineConfiguration.getProcessEngineName();
origin: camunda/camunda-bpm-platform

public ProcessEngineImpl(ProcessEngineConfigurationImpl processEngineConfiguration) {
 this.name = processEngineConfiguration.getProcessEngineName();
origin: org.camunda.bpm/camunda-engine

serviceContainer.startService(ServiceTypes.PROCESS_ENGINE, configuration.getProcessEngineName(), managedProcessEngineService);
origin: org.camunda.bpm/camunda-engine

public ProcessEngineImpl(ProcessEngineConfigurationImpl processEngineConfiguration) {
 this.name = processEngineConfiguration.getProcessEngineName();
org.camunda.bpm.engine.impl.cfgProcessEngineConfigurationImplgetProcessEngineName

Popular methods of ProcessEngineConfigurationImpl

  • buildProcessEngine
  • getCommandExecutorTxRequired
  • getBatchWindowManager
  • getCommandExecutorSchemaOperations
  • getExpressionManager
  • getJobExecutor
  • getBeans
  • getDatabaseTablePrefix
  • getHistoryLevel
  • getProcessApplicationManager
  • getVariableSerializers
  • setCustomPreBPMNParseListeners
  • getVariableSerializers,
  • setCustomPreBPMNParseListeners,
  • getBatchJobsPerSeed,
  • getCommandExecutorTxRequiresNew,
  • getCustomPreBPMNParseListeners,
  • getDataSource,
  • getDbMetricsReporter,
  • getDbSqlSessionFactory,
  • getDefaultCharset,
  • getHistory

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (Timer)
  • getSupportFragmentManager (FragmentActivity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Github Copilot alternatives
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