@RequestMapping(value = "/speeches", method = GET, produces = MediaType.APPLICATION_JSON_VALUE)
 public List<Speech> findAll() {
   return speechService.findAll();
 }