Package org.apache.jackrabbit.mongomk

Examples of org.apache.jackrabbit.mongomk.BlobStoreMongo


    @Override
    public void setUpCluster(MicroKernel[] cluster) {
        try {
            MongoUtil.initDatabase(mongoConnection);
            NodeStore nodeStore = new NodeStoreMongo(mongoConnection);
            BlobStore blobStore = new BlobStoreMongo(mongoConnection);

            MicroKernel mk = new MongoMicroKernel(nodeStore, blobStore);
            for (int i = 0; i < cluster.length; i++) {
                cluster[i] = mk;
            }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.mongomk.BlobStoreMongo

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.