task.getId(),
status.getId()
);
if(tasks.containsKey(task.getId())) {
throw new EntryExistsException(task.getId());
}
log.info("Inserting task %s with status: %s", task.getId(), status);
tasks.put(task.getId(), new TaskStuff(task, status, new DateTime()));
} finally {