Package org.apache.jackrabbit.oak.spi.query

Examples of org.apache.jackrabbit.oak.spi.query.CompositeQueryIndexProvider


    }

    public SystemRoot(NodeStore store, CommitHook hook) {
        // FIXME: define proper default or pass workspace name with the constructor
        this(store, hook, Oak.DEFAULT_WORKSPACE_NAME, new OpenSecurityProvider(),
                new CompositeQueryIndexProvider());
    }
View Full Code Here


        }
    }

    protected AbstractRoot createRoot() {
        return new AbstractRoot(store, hook, PostCommitHook.EMPTY, "solr-query-engine-it", new Subject(),
                new OpenSecurityProvider(), new CompositeQueryIndexProvider()) {
            @Nonnull
            @Override
            public ContentSession getContentSession() {
                throw new UnsupportedOperationException();
            }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.spi.query.CompositeQueryIndexProvider

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.