protected CoordinatorActionBean execute() throws CommandException {
JPAService jpaService = Services.get().get(JPAService.class);
if (jpaService != null) {
CoordinatorActionBean action;
try {
action = jpaService.execute(new CoordActionGetForInfoJPAExecutor(this.id));
}
catch (JPAExecutorException e) {
throw new CommandException(e);
}
return action;