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:41 PM 13 * To change this template use File | Settings | File Templates. 14 */ 15 public class AbstractExternalDataSource implements ExternalDataSource { 16 17 @Override 18 public List<String> searchForBibs(SearchParams searchParams, DataSourceConfig dataSourceConfigInfo) throws Exception, OleException { 19 return null; //To change body of implemented methods use File | Settings | File Templates. 20 } 21 }