int pageNumber = Integer.valueOf(rawPageNumber.get());
PaginatedList<PurchaseOrder> purchaseOrders = purchaseOrderReadService.getPaginatedList(pageSize, pageNumber);
// Provide a representation to the client
Representation representation = new AdminPurchaseOrderCollectionRepresentation().get(purchaseOrders);
return ok(representation);
}