* @throws DagEngineException thrown if the job definition could no be obtained.
*/
@Override
public String getDefinition(String jobId) throws DagEngineException {
try {
return new DefinitionXCommand(jobId).call();
}
catch (CommandException ex) {
throw new DagEngineException(ex);
}
}