@Override
protected WorkflowJobBean execute() throws CommandException {
try {
JPAService jpaService = Services.get().get(JPAService.class);
if (jpaService != null) {
this.workflow = jpaService.execute(new WorkflowInfoWithActionsSubsetGetJPAExecutor(this.id, this.start,
this.len));
}
else {
throw new CommandException(ErrorCode.E0610, this.id);
}