Project

General

Profile

1
package eu.dnetlib.repo.manager.shared;
2

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

    
5
import java.util.Date;
6

    
7
public class AggregationDetails implements IsSerializable{
8

    
9

    
10
    private String aggregationStage;
11
    private Date date;
12
    private int numberOfRecords;
13
    private String collectionMode;
14

    
15
    public AggregationDetails() {
16
    }
17

    
18
    public String getAggregationStage() {
19
        return aggregationStage;
20
    }
21

    
22
    public String getCollectionMode() {
23
        return collectionMode;
24
    }
25

    
26
    public void setCollectionMode(String collectionMode) {
27
        this.collectionMode = collectionMode;
28
    }
29

    
30
    public void setAggregationStage(String aggregationStage) {
31
        this.aggregationStage = aggregationStage;
32
    }
33

    
34
    public Date getDate() {
35
        return date;
36
    }
37

    
38
    public void setDate(Date date) {
39
        this.date = date;
40
    }
41

    
42
    public int getNumberOfRecords() {
43
        return numberOfRecords;
44
    }
45

    
46
    public void setNumberOfRecords(int numberOfRecords) {
47
        this.numberOfRecords = numberOfRecords;
48
    }
49
}
(1-1/21)