protected String getEventName() {
return TERMINATE;
}
protected void notifyParent(CmmnExecution parent, CmmnExecution execution) {
CmmnActivityBehavior behavior = getActivityBehavior(parent);
if (behavior instanceof CompositeActivityBehavior) {
CompositeActivityBehavior compositeBehavior = (CompositeActivityBehavior) behavior;
compositeBehavior.childStateChanged(parent, execution);
}
}