public Execution findExecutionById(String executionId) {
return commandService.execute(new FindExecutionCmd(executionId));
}
public ProcessInstance findProcessInstanceById(String executionId) {
return (ProcessInstance) commandService.execute(new FindExecutionCmd(executionId));
}