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