@RequestMapping(value = VIDEO_LIKEDBY_PATH, method = RequestMethod.GET)
 public @ResponseBody Set<String> likedbyVideo(@PathVariable(VIDEO_ID) long id) {
   Video v = videos.findOne(id);
   if (v == null) {
     throw new ResourceNotFoundException();
   }
   return v.getLikedUsers();
 }