@PreAuthorize("hasRole('ROLE_ADMIN')")
 @RequestMapping(value = "/systems", method = RequestMethod.GET)
 public List<String> getAllSystems() {
   return channelDao.getAllSystems();
 }