001package org.kuali.ole.externalds;
002
003import org.kuali.ole.docstore.OleException;
004import org.kuali.ole.docstore.common.search.SearchParams;
005
006import java.util.List;
007
008/**
009 * Created by IntelliJ IDEA.
010 * User: ND6967
011 * Date: 2/19/13
012 * Time: 12:41 PM
013 * To change this template use File | Settings | File Templates.
014 */
015public class AbstractExternalDataSource implements ExternalDataSource {
016
017    @Override
018    public List<String> searchForBibs(SearchParams searchParams, DataSourceConfig dataSourceConfigInfo) throws Exception, OleException {
019        return null;  //To change body of implemented methods use File | Settings | File Templates.
020    }
021}