Example #1
0
 @PUT
 @Path("{userId}/books/wishlist/rec")
 public Response synchWishListRec(@PathParam("userId") final String userId) {
   userDao.synchWishListRec(userId);
   return Response.ok().build();
 }