new KeysUnmarshaller().unmarshall(inputStream, keys);
return keys;
}
public Key listKey(String id) throws DeltaCloudClientException {
InputStream inputStream = request(new ListKeyRequest(baseUrl, id));
Key key = new KeyUnmarshaller().unmarshall(inputStream, new Key());
return key;
}