*/
public void deleteContainer(Region region, String name) throws IOException {
HttpDelete method = new HttpDelete(region.getStorageUrl(name));
Response response = this.execute(method, new DefaultResponseHandler());
if(response.getStatusCode() == HttpStatus.SC_CONFLICT) {
throw new ContainerNotEmptyException(response);
}
}