// Persist the updated delivery
persistentDelivery = deliveryReadService.saveOrUpdate(persistentDelivery);
// Provide a representation to the client
Representation representation = new AdminDeliveryRepresentation().get(persistentDelivery);
return ok(representation);
}