@POST
 @Path("/enable")
 public Response enable(List<Integer> ids) {
   updateTimerIds(ids);
   TimerUtils.enableTimers(ids);
   return RestUtils.getResponse(Status.NO_CONTENT);
 }