Project

General

Profile

« Previous | Next » 

Revision 31217

partial implementation

View differences:

ResultSetService.java
5 5

  
6 6
@WebService(targetNamespace = "http://services.dnetlib.eu/")
7 7
public interface ResultSetService {
8
	ResultSetResponse getNextResults(@WebParam(name = "rsId") String rsId, @WebParam(name = "n") int n) throws ResultSetException;
8
	<T> ResultSetResponse<T> getNextResults(
9
			@WebParam(name = "rsId") String rsId,
10
			@WebParam(name = "n") int n,
11
			@WebParam(name = "clazz") Class<T> clazz) throws ResultSetException;
9 12
}

Also available in: Unified diff