1 17 package org.alfresco.repo.search; 18 19 import org.alfresco.service.cmr.repository.StoreRef; 20 import org.alfresco.service.cmr.search.SearchService; 21 22 28 public interface IndexerAndSearcher 29 { 30 37 public abstract Indexer getIndexer(StoreRef storeRef) throws IndexerException; 38 39 49 public abstract SearchService getSearcher(StoreRef storeRef, boolean searchDelta) throws SearcherException; 50 51 52 56 public abstract void flush(); 57 } 58 | Popular Tags |