uri += "&Marker=" + nextMarker;
}
HttpGet httpMethod = new HttpGet(uri);
HttpResponse response = performRestRequest(httpMethod, 200);
InvalidationListHandler handler =
(new CloudFrontXmlResponsesSaxParser(this.jets3tProperties))
.parseInvalidationListResponse(response.getEntity().getContent());
return handler.getInvalidationList();
}
catch(CloudFrontServiceException e) {
throw e;
}
catch(RuntimeException e) {