Project

General

Profile

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

    
3
import java.util.Date;
4

    
5
public class AggregationDetails {
6

    
7

    
8
    private String aggregationStage;
9
    private Date date;
10
    private int numberOfRecords;
11
    private String collectionMode;
12

    
13
    public AggregationDetails() {
14
    }
15

    
16
    public String getAggregationStage() {
17
        return aggregationStage;
18
    }
19

    
20
    public String getCollectionMode() {
21
        return collectionMode;
22
    }
23

    
24
    public void setCollectionMode(String collectionMode) {
25
        this.collectionMode = collectionMode;
26
    }
27

    
28
    public void setAggregationStage(String aggregationStage) {
29
        this.aggregationStage = aggregationStage;
30
    }
31

    
32
    public Date getDate() {
33
        return date;
34
    }
35

    
36
    public void setDate(Date date) {
37
        this.date = date;
38
    }
39

    
40
    public int getNumberOfRecords() {
41
        return numberOfRecords;
42
    }
43

    
44
    public void setNumberOfRecords(int numberOfRecords) {
45
        this.numberOfRecords = numberOfRecords;
46
    }
47
}
(1-1/20)