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