Codota Logo
org.camunda.bpm.engine.impl.cfg
Code IndexAdd Codota to your IDE (free)

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

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

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
List l =
  • Codota Iconnew LinkedList()
  • Codota IconCollections.emptyList()
  • Codota Iconnew ArrayList()
  • Smart code suggestions by Codota
}
origin: camunda/camunda-bpm-platform

public CommandContext(ProcessEngineConfigurationImpl processEngineConfiguration, TransactionContextFactory transactionContextFactory) {
 this.processEngineConfiguration = processEngineConfiguration;
 this.failedJobCommandFactory = processEngineConfiguration.getFailedJobCommandFactory();
 sessionFactories = processEngineConfiguration.getSessionFactories();
 this.transactionContext = transactionContextFactory.openTransactionContext(this);
 this.restrictUserOperationLogToAuthenticatedUsers = processEngineConfiguration.isRestrictUserOperationLogToAuthenticatedUsers();
}
origin: camunda/camunda-bpm-platform

public void beforeCompletion() {
 if(TransactionState.COMMITTING.equals(transactionState)
   || TransactionState.ROLLINGBACK.equals(transactionState)) {
  transactionListener.execute(commandContext);
 }
}
origin: camunda/camunda-bpm-platform

protected void init() {
 initTransactionManager();
 initDbSchemaOperationsCommandContextFactory();
 super.init();
}
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

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

 @Override
 public void afterCommit() {
  transactionListener.execute(commandContext);
 }
});
origin: camunda/camunda-bpm-platform

protected void initCommandExecutorTxRequired() {
 if (commandExecutorTxRequired == null) {
  commandExecutorTxRequired = initInterceptorChain(commandInterceptorsTxRequired);
 }
}
origin: camunda/camunda-bpm-platform

/**
 * Creates a new {@link BpmnParse} instance that can be used
 * to parse only one BPMN 2.0 process definition.
 */
public BpmnParse createParse() {
 return bpmnParseFactory.createBpmnParse(this);
}
origin: camunda/camunda-bpm-platform

 public ProcessEngineConfiguration configureEngine(ProcessEngineConfigurationImpl configuration) {
  configuration.setJavaSerializationFormatEnabled(true);
  return configuration;
 }
};
origin: camunda/camunda-bpm-platform

public CommandContext(ProcessEngineConfigurationImpl processEngineConfiguration, TransactionContextFactory transactionContextFactory) {
 this.processEngineConfiguration = processEngineConfiguration;
 this.failedJobCommandFactory = processEngineConfiguration.getFailedJobCommandFactory();
 sessionFactories = processEngineConfiguration.getSessionFactories();
 this.transactionContext = transactionContextFactory.openTransactionContext(this);
 this.restrictUserOperationLogToAuthenticatedUsers = processEngineConfiguration.isRestrictUserOperationLogToAuthenticatedUsers();
}
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 afterCompletion(int status) {
 if(Status.STATUS_ROLLEDBACK == status && TransactionState.ROLLED_BACK.equals(transactionState)) {
  transactionListener.execute(commandContext);
 } else if(Status.STATUS_COMMITTED == status && TransactionState.COMMITTED.equals(transactionState)) {
  transactionListener.execute(commandContext);
 }
}
origin: camunda/camunda-bpm-platform

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

protected void invokePostInit() {
 for (ProcessEnginePlugin plugin : processEnginePlugins) {
  plugin.postInit(this);
 }
}
origin: camunda/camunda-bpm-platform

 @Override
 public void beforeCompletion() {
  transactionListener.execute(commandContext);
 }
});
origin: camunda/camunda-bpm-platform

 public ProcessEngineConfiguration configureEngine(ProcessEngineConfigurationImpl configuration) {
  configuration.setJavaSerializationFormatEnabled(true);
  return configuration;
 }
};
origin: camunda/camunda-bpm-platform

public void beforeCompletion() {
 if(TransactionState.COMMITTING.equals(transactionState)
   || TransactionState.ROLLINGBACK.equals(transactionState)) {
  transactionListener.execute(commandContext);
 }
}
origin: camunda/camunda-bpm-platform

protected void invokePostInit() {
 for (ProcessEnginePlugin plugin : processEnginePlugins) {
  plugin.postInit(this);
 }
}
origin: camunda/camunda-bpm-platform

 public ProcessEngineConfiguration configureEngine(ProcessEngineConfigurationImpl configuration) {
  configuration.setJavaSerializationFormatEnabled(true);
  return configuration;
 }
};
origin: camunda/camunda-bpm-platform

public void afterCompletion(int status) {
 if(Status.STATUS_ROLLEDBACK == status && TransactionState.ROLLED_BACK.equals(transactionState)) {
  transactionListener.execute(commandContext);
 } else if(Status.STATUS_COMMITTED == status && TransactionState.COMMITTED.equals(transactionState)) {
  transactionListener.execute(commandContext);
 }
}
org.camunda.bpm.engine.impl.cfg

Most used classes

  • ProcessEngineConfigurationImpl
  • StandaloneInMemProcessEngineConfiguration
  • JtaProcessEngineConfiguration
  • StandaloneProcessEngineConfiguration
  • CompositeProcessEnginePlugin
    ProcessEnginePlugin that provides composite behavior. When registered on an engine configuration, al
  • TransactionContext,
  • StandaloneTransactionContext,
  • BatchWindowConfiguration,
  • IdGenerator,
  • TransactionListener,
  • TransactionState,
  • DefaultAuthorizationProvider,
  • TenantIdProvider,
  • TenantIdProviderCaseInstanceContext,
  • TenantIdProviderHistoricDecisionInstanceContext,
  • TenantIdProviderProcessInstanceContext,
  • BeansConfigurationHelper,
  • BpmnParseFactory,
  • CommandChecker
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