Project

General

Profile

1
package eu.dnetlib.datasource.publisher.model;
2

    
3
/**
4
 * Created by claudio on 12/09/16.
5
 */
6
public class AggregationInfo {
7

    
8
	private int numberOfRecords;
9

    
10
	private String date;
11

    
12
	private AggregationStage aggregationStage;
13

    
14
	private CollectionMode collectionMode;
15

    
16
	public AggregationInfo() {
17
	}
18

    
19
	public int getNumberOfRecords() {
20
		return numberOfRecords;
21
	}
22

    
23
	public void setNumberOfRecords(final int numberOfRecords) {
24
		this.numberOfRecords = numberOfRecords;
25
	}
26

    
27
	public String getDate() {
28
		return date;
29
	}
30

    
31
	public void setDate(final String date) {
32
		this.date = date;
33
	}
34

    
35
	public AggregationStage getAggregationStage() {
36
		return aggregationStage;
37
	}
38

    
39
	public void setAggregationStage(final AggregationStage aggregationStage) {
40
		this.aggregationStage = aggregationStage;
41
	}
42

    
43
	public CollectionMode getCollectionMode() {
44
		return collectionMode;
45
	}
46

    
47
	public void setCollectionMode(final CollectionMode collectionMode) {
48
		this.collectionMode = collectionMode;
49
	}
50
}
(1-1/11)