Package org.apache.jackrabbit.oak.plugins.index

Examples of org.apache.jackrabbit.oak.plugins.index.IndexEditor


        if (SolrQueryIndex.TYPE.equals(type) && solrServerProvider != null && oakSolrConfigurationProvider != null) {
            try {
                if (log.isDebugEnabled()) {
                    log.debug("Creating a Solr index hook");
                }
                IndexEditor indexHook = new SolrIndexDiff(builder, solrServerProvider.getSolrServer(), oakSolrConfigurationProvider.getConfiguration());
                return indexHook;
            } catch (Exception e) {
                log.error("unable to create Solr IndexHook ", e);
            }
        }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.plugins.index.IndexEditor

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.