use of org.camunda.bpm.engine.impl.cmmn.execution.CmmnExecution in project camunda-bpm-platform by camunda.
the class AbstractCmmnEventAtomicOperation method performTransitionNotification.
protected void performTransitionNotification(CmmnExecution execution) {
String eventName = getEventName();
CmmnExecution parent = execution.getParent();
if (parent != null) {
parent.handleChildTransition(execution, eventName);
}
}
Aggregations