1 package org.kuali.ole.externalds;
2
3 import org.kuali.ole.docstore.OleException;
4 import org.kuali.ole.docstore.common.search.SearchParams;
5
6 import java.util.List;
7
8 /**
9 * Created by IntelliJ IDEA.
10 * User: ND6967
11 * Date: 2/19/13
12 * Time: 12:40 PM
13 * To change this template use File | Settings | File Templates.
14 */
15 public interface ExternalDataSource {
16 public List<String> searchForBibs(SearchParams searchParams, DataSourceConfig dataSourceConfigInfo) throws Exception, OleException;
17 }