Project

General

Profile

1
package eu.dnetlib.enabling.resultset.client;
2

    
3

    
4
import javax.xml.ws.wsaddressing.W3CEndpointReference;
5

    
6
/**
7
 * 
8
 * @author claudio
9
 *
10
 */
11
public interface ResultSetClient {
12
	
13
	/**
14
	 * 
15
	 * @param epr
16
	 * @return
17
	 */
18
	public IterableResultSetClient getClient(W3CEndpointReference epr);
19
	
20
	/**
21
	 * 
22
	 * @param epr
23
	 * @return
24
	 */
25
	public IterableResultSetClient getClient(String epr);
26
	
27
	/**
28
	 * 
29
	 * @param epr
30
	 * @param pageSize
31
	 * @return
32
	 */
33
	public IterableResultSetClient getClient(W3CEndpointReference epr, int pageSize);
34
	
35
	/**
36
	 * 
37
	 * @param epr
38
	 * @param pageSize
39
	 * @return
40
	 */
41
	public IterableResultSetClient getClient(String epr, int pageSize);
42
	
43
	
44
}
(2-2/5)