public long setUpdateTime(final String id) throws GenieException {
LOG.debug("Updating db for job: " + id);
this.testId(id);
final Job job = this.jobRepo.findOne(id);
if (job == null) {
throw new GenieNotFoundException(
"No job with id " + id + " exists"
);
}
final long lastUpdatedTimeMS = System.currentTimeMillis();