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

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

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

origin: camunda/camunda-bpm-platform

protected void init() {
 initTransactionManager();
 initDbSchemaOperationsCommandContextFactory();
 super.init();
}
origin: camunda/camunda-bpm-platform

@Override
public ProcessEngine buildProcessEngine() {
 init();
 processEngine = new ProcessEngineImpl(this);
 invokePostProcessEngineBuild(processEngine);
 return processEngine;
}
origin: camunda/camunda-bpm-platform

protected void init() {
 initTransactionManager();
 initDbSchemaOperationsCommandContextFactory();
 super.init();
}
origin: camunda/camunda-bpm-platform

@Override
public ProcessEngine buildProcessEngine() {
 init();
 processEngine = new ProcessEngineImpl(this);
 invokePostProcessEngineBuild(processEngine);
 return processEngine;
}
origin: camunda/camunda-bpm-platform

protected void initIdGenerator() {
 if (idGenerator == null) {
  CommandExecutor idGeneratorCommandExecutor = null;
  if (idGeneratorDataSource != null) {
   ProcessEngineConfigurationImpl processEngineConfiguration = new StandaloneProcessEngineConfiguration();
   processEngineConfiguration.setDataSource(idGeneratorDataSource);
   processEngineConfiguration.setDatabaseSchemaUpdate(DB_SCHEMA_UPDATE_FALSE);
   processEngineConfiguration.init();
   idGeneratorCommandExecutor = processEngineConfiguration.getCommandExecutorTxRequiresNew();
  } else if (idGeneratorDataSourceJndiName != null) {
   ProcessEngineConfigurationImpl processEngineConfiguration = new StandaloneProcessEngineConfiguration();
   processEngineConfiguration.setDataSourceJndiName(idGeneratorDataSourceJndiName);
   processEngineConfiguration.setDatabaseSchemaUpdate(DB_SCHEMA_UPDATE_FALSE);
   processEngineConfiguration.init();
   idGeneratorCommandExecutor = processEngineConfiguration.getCommandExecutorTxRequiresNew();
  } else {
   idGeneratorCommandExecutor = commandExecutorTxRequiresNew;
  }
  DbIdGenerator dbIdGenerator = new DbIdGenerator();
  dbIdGenerator.setIdBlockSize(idBlockSize);
  dbIdGenerator.setCommandExecutor(idGeneratorCommandExecutor);
  idGenerator = dbIdGenerator;
 }
}
origin: camunda/camunda-bpm-platform

protected void initIdGenerator() {
 if (idGenerator == null) {
  CommandExecutor idGeneratorCommandExecutor = null;
  if (idGeneratorDataSource != null) {
   ProcessEngineConfigurationImpl processEngineConfiguration = new StandaloneProcessEngineConfiguration();
   processEngineConfiguration.setDataSource(idGeneratorDataSource);
   processEngineConfiguration.setDatabaseSchemaUpdate(DB_SCHEMA_UPDATE_FALSE);
   processEngineConfiguration.init();
   idGeneratorCommandExecutor = processEngineConfiguration.getCommandExecutorTxRequiresNew();
  } else if (idGeneratorDataSourceJndiName != null) {
   ProcessEngineConfigurationImpl processEngineConfiguration = new StandaloneProcessEngineConfiguration();
   processEngineConfiguration.setDataSourceJndiName(idGeneratorDataSourceJndiName);
   processEngineConfiguration.setDatabaseSchemaUpdate(DB_SCHEMA_UPDATE_FALSE);
   processEngineConfiguration.init();
   idGeneratorCommandExecutor = processEngineConfiguration.getCommandExecutorTxRequiresNew();
  } else {
   idGeneratorCommandExecutor = commandExecutorTxRequiresNew;
  }
  DbIdGenerator dbIdGenerator = new DbIdGenerator();
  dbIdGenerator.setIdBlockSize(idBlockSize);
  dbIdGenerator.setCommandExecutor(idGeneratorCommandExecutor);
  idGenerator = dbIdGenerator;
 }
}
origin: org.camunda.bpm/camunda-engine

@Override
public ProcessEngine buildProcessEngine() {
 init();
 processEngine = new ProcessEngineImpl(this);
 invokePostProcessEngineBuild(processEngine);
 return processEngine;
}
origin: org.camunda.bpm/camunda-engine

protected void init() {
 initTransactionManager();
 initDbSchemaOperationsCommandContextFactory();
 super.init();
}
origin: org.camunda.bpm/camunda-engine

protected void initIdGenerator() {
 if (idGenerator == null) {
  CommandExecutor idGeneratorCommandExecutor = null;
  if (idGeneratorDataSource != null) {
   ProcessEngineConfigurationImpl processEngineConfiguration = new StandaloneProcessEngineConfiguration();
   processEngineConfiguration.setDataSource(idGeneratorDataSource);
   processEngineConfiguration.setDatabaseSchemaUpdate(DB_SCHEMA_UPDATE_FALSE);
   processEngineConfiguration.init();
   idGeneratorCommandExecutor = processEngineConfiguration.getCommandExecutorTxRequiresNew();
  } else if (idGeneratorDataSourceJndiName != null) {
   ProcessEngineConfigurationImpl processEngineConfiguration = new StandaloneProcessEngineConfiguration();
   processEngineConfiguration.setDataSourceJndiName(idGeneratorDataSourceJndiName);
   processEngineConfiguration.setDatabaseSchemaUpdate(DB_SCHEMA_UPDATE_FALSE);
   processEngineConfiguration.init();
   idGeneratorCommandExecutor = processEngineConfiguration.getCommandExecutorTxRequiresNew();
  } else {
   idGeneratorCommandExecutor = commandExecutorTxRequiresNew;
  }
  DbIdGenerator dbIdGenerator = new DbIdGenerator();
  dbIdGenerator.setIdBlockSize(idBlockSize);
  dbIdGenerator.setCommandExecutor(idGeneratorCommandExecutor);
  idGenerator = dbIdGenerator;
 }
}
org.camunda.bpm.engine.impl.cfgProcessEngineConfigurationImplinit

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

  • Start an intent from android
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getSharedPreferences (Context)
  • requestLocationUpdates (LocationManager)
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • Top plugins for WebStorm
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