int pageNumber = Integer.valueOf(rawPageNumber.get());
PaginatedList<User> users = userReadService.getPaginatedList(pageSize, pageNumber);
// Provide a representation to the client
Representation representation = new AdminUserCollectionRepresentation().get(users, Optional.of(adminUser));
return ok(representation);
}