* @throws GenericException Unexpected response
* @throws AuthorizationException The Client's Login was invalid.
*/
public ContainerMetadata getContainerMetaData(Region region, String container) throws IOException {
HttpHead method = new HttpHead(region.getStorageUrl(container));
return this.execute(method, new ContainerMetadataResponseHandler());
}