Ejemplo n.º 1
0
 @RequestMapping(
     value = "/events/{id}/speeches",
     method = RequestMethod.GET,
     produces = MediaType.APPLICATION_JSON_VALUE)
 public Set<Speech> findByEventId(@PathVariable("id") Long id) {
   Event event = eventService.findById(id);
   return speechService.findByEvent(event);
 }