* @throws CoordinatorEngineException the coordinator engine exception
*/
public String updateJob(Configuration conf, String jobId, boolean dryrun, boolean showDiff)
throws CoordinatorEngineException {
try {
CoordUpdateXCommand update = new CoordUpdateXCommand(dryrun, conf, jobId, showDiff);
return update.call();
}
catch (CommandException ex) {
throw new CoordinatorEngineException(ex);
}
}