Examples of OLATSearcher


Examples of org.olat.search.service.searcher.OLATSearcher

        searchModuleConfig.getIndexInterval(),
        spellChecker);
      indexUpdater = new IndexUpdater(searchModuleConfig.getFullIndexPath(), searchModuleConfig.getUpdateInterval());
    }
    //search set via spring
    OLATSearcher implDelegate = null;
    if(hasLocalImplementation) {
      implDelegate = (OLATSearcher)CoreSpringFactory.getBean(searchModuleConfig.getImplementation());
      if(implDelegate instanceof Search) { //TODO: find solution to avoid casting
        ((Search)implDelegate).setIndexPath(searchModuleConfig.getFullIndexPath());
        ((Search)implDelegate).setSearchSpellChecker(spellChecker);
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.