use of org.camunda.bpm.engine.impl.cmmn.execution.CaseExecutionState in project camunda-bpm-platform by camunda.
the class AbstractAtomicOperationCaseExecutionResume method eventNotificationsStarted.
protected CmmnExecution eventNotificationsStarted(CmmnExecution execution) {
CmmnActivityBehavior behavior = getActivityBehavior(execution);
triggerBehavior(behavior, execution);
CaseExecutionState newState = getPreviousState(execution);
execution.setCurrentState(newState);
return execution;
}
Aggregations