* @throws ch.iterate.openstack.swift.exception.NotFoundException
* The file was not found
*/
public ObjectMetadata getObjectMetaData(Region region, String container, String object) throws IOException {
HttpHead method = new HttpHead(region.getStorageUrl(container, object));
return this.execute(method, new ObjectMetadataResponseHandler());
}