@GET
 @Path("{id : \\d+}")
 @Override
 public Shop getShop(Long id) {
   return shopService.getShop(id);
 }