@GET
 @Timed
 @Path("{id}")
 public Object getById(@PathParam("id") String id) {
   return trainingStore.findById(id);
 }