Optional<Item> itemOptional = itemReadService.getBySKU(sku);
ResourceAsserts.assertPresent(itemOptional, "item");
// Provide a representation to the client
Representation representation = new PublicItemRepresentation().get(itemOptional.get());
return ok(representation);
}