package eu.dnetlib.data.information;

import javax.xml.ws.wsaddressing.W3CEndpointReference;

/**
 * A DataSource is an abstract way to access data sources.
 *
 * @author marko
 *
 */
public interface DataSource {
	/**
	 * Retrieve the content of the datasource.
	 *
	 * @return resultset epr
	 */
	W3CEndpointReference retrieve() throws DataSinkSourceException;
}
