package eu.dnetlib.data.information;

import javax.xml.ws.wsaddressing.W3CEndpointReference;

/**
 * A DataSink instance abstracts a stateful service which can accept data.
 *
 * @author marko
 *
 */
public interface DataSink {
	/**
	 * stores the data contained in the input resultset.
	 *
	 * @param rsEpr resultset epr
	 */
	void store(W3CEndpointReference rsEpr) throws DataSinkSourceException;
}
