* The container was not found
* @throws AuthorizationException The openstack was not logged in or the log in expired.
*/
public ContainerInfo getContainerInfo(Region region, String container) throws IOException {
HttpHead method = new HttpHead(region.getStorageUrl(container));
return this.execute(method, new ContainerInfoHandler(region, container));
}