protected String getEventName() {
return RE_ACTIVATE;
}
protected CmmnExecution eventNotificationsStarted(CmmnExecution execution) {
CmmnActivityBehavior behavior = getActivityBehavior(execution);
behavior.onReactivation(execution);
execution.setCurrentState(ACTIVE);
return execution;
}