return interceptorChain.containsInterceptorType(QueryInterceptor.class, true);
}
private SearchFactoryIntegrator getSearchFactory(Properties indexingProperties, ComponentRegistry cr) {
Object component = cr.getComponent(SearchFactoryIntegrator.class);
SearchFactoryIntegrator searchFactory = null;
if (component instanceof SearchFactoryIntegrator) { //could be the placeholder Object REMOVED_REGISTRY_COMPONENT
searchFactory = (SearchFactoryIntegrator) component;
}
//defend against multiple initialization:
if (searchFactory==null) {