@RequestMapping(
     value = "/history/count",
     method = RequestMethod.GET,
     produces = "application/json")
 public void getHistoryCount(
     final HttpServletRequest httpServletRequest, final HttpServletResponse httpServletResponse) {
   final int count = _historicalStorage.getHistoryCount(null);
 }