* @throws DagEngineException thrown if the lookup could not be done.
*/
@Override
public String getJobIdForExternalId(String externalId) throws DagEngineException {
try {
return new ExternalIdXCommand(externalId).call();
}
catch (CommandException dce) {
throw new DagEngineException(dce);
}
}