@Override
public void suspendChildren() throws CommandException {
try {
//Get all running actions of a job to suspend them
List<CoordinatorActionBean> actionList = jpaService
.execute(new CoordJobGetActionsRunningJPAExecutor(jobId));
for (CoordinatorActionBean action : actionList) {
// queue a SuspendXCommand
if (action.getExternalId() != null) {
queue(new SuspendXCommand(action.getExternalId()));
updateCoordAction(action);