int pageNumber = Integer.valueOf(rawPageNumber.get());
PaginatedList<Item> items = itemReadService.getPaginatedList(pageSize, pageNumber);
// Provide a representation to the client
Representation representation = new AdminItemCollectionRepresentation().get(items);
return ok(representation);
}