* @see org.apache.oozie.BaseEngine#change(java.lang.String, java.lang.String)
*/
@Override
public void change(String jobId, String changeValue) throws CoordinatorEngineException {
try {
new CoordChangeCommand(jobId, changeValue).call();
XLog.getLog(getClass()).info("User " + user + " changed the Coordinator job " + jobId + " to " + changeValue);
}
catch (CommandException e) {
throw new CoordinatorEngineException(e);
}