use of org.camunda.bpm.engine.impl.application.ProcessApplicationManager in project camunda-bpm-platform by camunda.
the class ProcessApplicationContextUtil method areProcessApplicationsRegistered.
public static boolean areProcessApplicationsRegistered() {
ProcessEngineConfigurationImpl processEngineConfiguration = Context.getProcessEngineConfiguration();
ProcessApplicationManager processApplicationManager = processEngineConfiguration.getProcessApplicationManager();
return processApplicationManager.hasRegistrations();
}
use of org.camunda.bpm.engine.impl.application.ProcessApplicationManager in project camunda-bpm-platform by camunda.
the class ProcessApplicationContextUtil method loggContextSwitchDetails.
private static void loggContextSwitchDetails(ExecutionEntity execution) {
final CoreExecutionContext<? extends CoreExecution> executionContext = Context.getCoreExecutionContext();
// only log for first atomic op:
if (executionContext == null || (executionContext.getExecution() != execution)) {
ProcessApplicationManager processApplicationManager = Context.getProcessEngineConfiguration().getProcessApplicationManager();
LOG.debugNoTargetProcessApplicationFound(execution, processApplicationManager);
}
}
Aggregations