throw new DeltaCloudClientException(e);
}
}
public List<Key> listKeys() throws DeltaCloudClientException {
InputStream inputStream = request(new ListKeysRequest(baseUrl));
List<Key> keys = new ArrayList<Key>();
new KeysUnmarshaller().unmarshall(inputStream, keys);
return keys;
}