package eu.dnetlib.rmi.soap;

import javax.jws.WebParam;
import javax.jws.WebService;

import eu.dnetlib.rmi.objects.resultSet.ResultSetResponse;
import eu.dnetlib.rmi.soap.exceptions.ResultSetException;

@WebService(targetNamespace = "http://services.dnetlib.eu/")
public interface ResultSetService extends BaseService {

	ResultSetResponse getNextResults(@WebParam(name = "rsId") String rsId, @WebParam(name = "n") int n) throws ResultSetException;
}
