* @see org.apache.oozie.BaseEngine#getCoordJob(java.lang.String, int, int)
*/
@Override
public CoordinatorJobBean getCoordJob(String jobId, int start, int length) throws BaseEngineException {
try {
return new CoordJobCommand(jobId, start, length).call();
}
catch (CommandException ex) {
throw new BaseEngineException(ex);
}
}