@RequestMapping(value = "/config", method = RequestMethod.GET)
 public ResponseEntity<Map<String, String>> getConfig() {
   return new ResponseEntity<Map<String, String>>(filter.getConfig(), HttpStatus.OK);
 }