HttpGet httpMethod = new HttpGet(ENDPOINT + VERSION + ORIGIN_ACCESS_IDENTITY_URI_PATH);
try {
HttpResponse response = performRestRequest(httpMethod, 200);
OriginAccessIdentityListHandler handler =
(new CloudFrontXmlResponsesSaxParser(this.jets3tProperties))
.parseOriginAccessIdentityListResponse(response.getEntity().getContent());
return handler.getOriginAccessIdentityList();
}
catch(CloudFrontServiceException e) {
throw e;
}
catch(RuntimeException e) {