use of org.camunda.bpm.container.impl.ejb.deployment.StopJcaExecutorServiceStep in project camunda-bpm-platform by camunda.
the class EjbBpmPlatformBootstrap method stop.
@PreDestroy
protected void stop() {
final RuntimeContainerDelegateImpl containerDelegate = getContainerDelegate();
containerDelegate.getServiceContainer().createUndeploymentOperation("undeploying camunda BPM platform").addStep(new StopProcessApplicationsStep()).addStep(new StopProcessEnginesStep()).addStep(new StopJobExecutorStep()).addStep(new StopJcaExecutorServiceStep()).addStep(new UnregisterBpmPlatformPluginsStep()).execute();
LOGGER.log(Level.INFO, "camunda BPM platform stopped.");
}
Aggregations