Example #1
0
 @DELETE
 @Path("{userId}/notifications")
 public Response moveNotifications(@PathParam("userId") final String userId) {
   notificationDao.moveNotification(userId);
   return Response.ok().build();
 }