@PreAuthorize("hasRole('ROLE_ADMIN')")
 @RequestMapping(method = RequestMethod.GET, params = "sys")
 public List<Channel> getBySystems(@RequestParam(value = "sys", required = true) String sysChars) {
   return channelDao.getChannelsBySystems(sysChars);
 }