示例#1
0
 @GET
 @Path("/count")
 @Produces(MediaType.APPLICATION_JSON)
 @RolesAllowed({ADMIN, ADMIN_READONLY})
 public Long count(@QueryParam("search") String search) {
   if (search != null) return userFinder.countBySearchCriteria(search);
   else return userFinder.countAll();
 }