01: package org.openedit.logger;
02:
03: import java.util.List;
04:
05: import com.openedit.OpenEditException;
06: import com.openedit.modules.search.BaseSearchIndex;
07:
08: public interface LogSearch extends BaseSearchIndex {
09:
10: public void updateIndex(List changes, boolean inOptimize)
11: throws OpenEditException;
12:
13: public void reIndexAll() throws OpenEditException;
14:
15: public void flush();
16:
17: }
|