method.setEntity(manifestEntity);
for(Map.Entry<String, String> key : this.renameObjectMetadata(metadata).entrySet()) {
method.setHeader(key.getKey(), key.getValue());
}
method.setHeader(Constants.X_STATIC_LARGE_OBJECT, "true");
Response response = this.execute(method, new DefaultResponseHandler());
if(response.getStatusCode() == HttpStatus.SC_CREATED) {
manifestEtag = response.getResponseHeader(HttpHeaders.ETAG).getValue();
}
else {
throw new GenericException(response);