.parseCompleteMultipartUploadResult(
new HttpMethodReleaseInputStream(httpResponse));
// Check whether completion actually succeeded
if (handler.getServiceException() != null) {
ServiceException e = handler.getServiceException();
e.setResponseHeaders(RestUtils.convertHeadersToMap(
httpResponse.getAllHeaders()));
throw e;
}
return handler.getMultipartCompleted();
} catch (S3ServiceException se) {