示例#1
0
 @GET
 @Path("/")
 @Produces(MediaType.APPLICATION_JSON)
 @RolesAllowed({ADMIN, ADMIN_READONLY})
 public List<User> findAll(
     @QueryParam("search") String search,
     @QueryParam("start") Integer start,
     @QueryParam("size") Integer size,
     @QueryParam("orderBy") String orderBy,
     @QueryParam("isDesc") Boolean isDesc) {
   if (search != null)
     return userFinder.findBySearchCriteria(search, start, size, orderBy, isDesc);
   else return userFinder.findAll(start, size, orderBy, isDesc);
 }