Project

General

Profile

1
package eu.dnetlib.goldoa.domain;
2

    
3
import com.google.gwt.user.client.rpc.IsSerializable;
4

    
5
import java.util.List;
6

    
7
/**
8
 * Created by antleb on 3/30/15.
9
 */
10
public class RequestSearchResults implements IsSerializable {
11

    
12
	private List<RequestInfo> requests;
13
	private int total;
14
	private int start;
15

    
16
	public RequestSearchResults(List<RequestInfo> requests, int total, int start) {
17
		this.requests = requests;
18
		this.total = total;
19
		this.start = start;
20
	}
21

    
22
	public List<RequestInfo> getRequests() {
23
		return requests;
24
	}
25

    
26
	public void setRequests(List<RequestInfo> requests) {
27
		this.requests = requests;
28
	}
29

    
30
	public int getTotal() {
31
		return total;
32
	}
33

    
34
	public void setTotal(int total) {
35
		this.total = total;
36
	}
37

    
38
	public int getStart() {
39
		return start;
40
	}
41

    
42
	public void setStart(int start) {
43
		this.start = start;
44
	}
45
}
(32-32/36)