storeContext = ContextBuilder.newBuilder( provider ).
credentials( identifier, credentials ).
overrides( asProperties( properties ) ).
buildView( BlobStoreContext.class );
BlobStore blobStore = storeContext.getBlobStore();
if( !blobStore.containerExists( container ) )
{
if( !blobStore.createContainerInLocation( null, container ) )
{
throw new EntityStoreException( "Unable to create JClouds Blob Container, cannot continue." );
}