*/
@Override
public void change(String jobId, String changeValue) throws CoordinatorEngineException {
try {
if (useXCommand) {
new CoordChangeXCommand(jobId, changeValue).call();
}
else {
new CoordChangeCommand(jobId, changeValue).call();
}
LOG.info("User " + user + " changed the Coordinator job " + jobId + " to " + changeValue);