*/
protected void openConnection() throws Exception {
if (blobStore == null) {
Map<String,?> config = getConfig();
if(!config.isEmpty()){
CloudBlobStore cbs = new CloudBlobStore();
PropertiesUtil.populate(cbs, config, false);
cbs.init();
blobStore = cbs;
}
blobStore = null;
}
}