Package org.apache.jackrabbit.mongomk.blob

Examples of org.apache.jackrabbit.mongomk.blob.MongoBlobStore


public class MongoMicroKernelFixture extends BaseMongoMicroKernelFixture {

    @Override
    protected BlobStore getBlobStore(DB db) {
        return new MongoBlobStore(db);
    }
View Full Code Here


         * @return this
         */
        public Builder setMongoDB(DB db) {
            if (db != null) {
                this.documentStore = new MongoDocumentStore(db);
                this.blobStore = new MongoBlobStore(db);
            }
            return this;
        }
View Full Code Here

         * @return this
         */
        public Builder setMongoDB(DB db) {
            if (db != null) {
                this.documentStore = new MongoDocumentStore(db);
                this.blobStore = new MongoBlobStore(db);
            }
            return this;
        }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.mongomk.blob.MongoBlobStore

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.