// TODO Fill in the location of a Delivery by a Supplier
}
Delivery delivery = supplierUser.getSupplier().getDeliveries().iterator().next();
// Provide a representation to the client
Representation representation = new SupplierDeliveryRepresentation().get(delivery);
return ok(representation);
}