1 17 package org.alfresco.repo.search.impl.lucene; 18 19 import org.alfresco.repo.search.IndexerAndSearcher; 20 import org.alfresco.repo.search.IndexerException; 21 22 public interface LuceneIndexerAndSearcher extends IndexerAndSearcher, LuceneConfig 23 { 24 public int prepare() throws IndexerException; 25 public void commit() throws IndexerException; 26 public void rollback(); 27 } 28 | Popular Tags |