View Javadoc

1   /*
2    * Created by IntelliJ IDEA.
3    * User: Mike
4    * Date: Oct 21, 2004
5    * Time: 4:51:07 PM
6    */
7   package com.atlassian.bonnie.search;
8   
9   import com.atlassian.bonnie.AnyTypeObjectDao;
10  import com.atlassian.core.util.ProgressMeter;
11  
12  public interface BatchIndexer
13  {
14      void setAnyTypeObjectDao(AnyTypeObjectDao anyTypeObjectDao);
15  
16      void indexEntities(ProgressMeter progress);
17  
18      void unIndexAll();
19  }