Package org.apache.jackrabbit.oak.plugins.blob.cloud

Examples of org.apache.jackrabbit.oak.plugins.blob.cloud.CloudBlobStore


     */
    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;
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.plugins.blob.cloud.CloudBlobStore

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.