Project

General

Profile

1
package eu.dnetlib.enabling.datasources.common;
2

    
3
public abstract class AggregationInfo {
4

    
5
	private int numberOfRecords;
6

    
7
	private String date;
8

    
9
	private AggregationStage aggregationStage;
10

    
11
	public AggregationInfo() {}
12

    
13
	public int getNumberOfRecords() {
14
		return numberOfRecords;
15
	}
16

    
17
	public void setNumberOfRecords(final int numberOfRecords) {
18
		this.numberOfRecords = numberOfRecords;
19
	}
20

    
21
	public String getDate() {
22
		return date;
23
	}
24

    
25
	public void setDate(final String date) {
26
		this.date = date;
27
	}
28

    
29
	public AggregationStage getAggregationStage() {
30
		return aggregationStage;
31
	}
32

    
33
	public void setAggregationStage(final AggregationStage aggregationStage) {
34
		this.aggregationStage = aggregationStage;
35
	}
36

    
37
}
(1-1/16)