@RequestMapping(value = "/getHistoryEvent", method = RequestMethod.GET)
 public @ResponseBody HistoryEvent getHistoryEvent(@RequestParam(value = "nID") Long id) {
   return historyEventDao.getHistoryEvent(id);
 }