private String host(String nodeName) throws NotFoundException {
// Get the entry representing the given node
Entry<String, Item> nodeEntry = nodeEntry(cloudCollection.getAll(), nodeName);
if (nodeEntry == null) {
throw new NotFoundException(nodeName);
}
// Get the host hosting it
return host(nodeEntry.getData());
}