}
@Override
public Realm listRealms(String realmId) throws DeltaCloudClientException {
try {
InputStream response = request(new ListRealmRequest(baseUrl, realmId));
return new RealmUnmarshaller().unmarshall(response, new Realm());
} catch (Exception e) {
throw new DeltaCloudClientException(
MessageFormat.format("could not get realms on cloud at \"{0}\"", baseUrl), e);
}