Revision 62403
Added by Michele Artini over 2 years ago
modules/dnet-datasource-manager-common/trunk/src/main/java/eu/dnetlib/enabling/datasources/common/AggregationInfo.java | ||
---|---|---|
10 | 10 |
|
11 | 11 |
private boolean indexedVersion = false; |
12 | 12 |
|
13 |
private boolean completedSuccessfully = true; |
|
14 |
|
|
13 | 15 |
public AggregationInfo() {} |
14 | 16 |
|
15 | 17 |
public int getNumberOfRecords() { |
... | ... | |
43 | 45 |
public void setIndexedVersion(final boolean indexedVersion) { |
44 | 46 |
this.indexedVersion = indexedVersion; |
45 | 47 |
} |
48 |
|
|
49 |
public boolean isCompletedSuccessfully() { |
|
50 |
return completedSuccessfully; |
|
51 |
} |
|
52 |
|
|
53 |
public void setCompletedSuccessfully(final boolean completedSuccessfully) { |
|
54 |
this.completedSuccessfully = completedSuccessfully; |
|
55 |
} |
|
46 | 56 |
} |
Also available in: Unified diff
flag completedSuccessfully in AggregationInfo