Package org.apache.jackrabbit.oak.plugins.sqlpersistence

Examples of org.apache.jackrabbit.oak.plugins.sqlpersistence.SQLBlobStore


         * @return this
         */
        public Builder setMongoJDBC(String jdbcurl, String username, String password) {
            // TODO maybe we need different connections for document store and node store
            this.documentStore = new SQLDocumentStore(jdbcurl, username, password);
            this.blobStore = new SQLBlobStore(jdbcurl, username, password);
            return this;
        }
View Full Code Here


public class SQLBlobStoreTest extends AbstractBlobStoreTest {

    private SQLBlobStore blobStore;

    public void setUp() throws Exception {
        blobStore = new SQLBlobStore();
        blobStore.setBlockSize(128);
        blobStore.setBlockSizeMin(48);
        this.store = blobStore;
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.plugins.sqlpersistence.SQLBlobStore

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.