int pageNumber = Integer.valueOf(rawPageNumber.get());
PaginatedList<Role> roles = roleReadService.getPaginatedList(pageSize, pageNumber);
// Provide a representation to the client
Representation representation = new AdminRoleCollectionRepresentation().get(roles);
return ok(representation);
}