View Javadoc
1   package org.kuali.ole.batch.service;
2   
3   import org.kuali.ole.batch.bo.OLEBatchProcessProfileBo;
4   import org.kuali.ole.docstore.common.search.SearchResult;
5   
6   import java.util.List;
7   
8   /**
9    * Created with IntelliJ IDEA.
10   * User: meenrajd
11   * Date: 7/5/13
12   * Time: 2:30 PM
13   * To change this template use File | Settings | File Templates.
14   */
15  public interface ExportDataService {
16      Object[] getExportDataBySolr(List<SearchResult> solrDocumentList, OLEBatchProcessProfileBo profile) throws Exception;
17  }
18