Examples of SQLDocumentStore


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

         * Sets a JDBC connection to use. By default an in-memory store is used.
         * @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
TOP
Copyright © 2018 www.massapi.com. 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.