This commit is contained in:
Christian Dupuis 2014-05-22 22:44:45 +02:00
parent aaa5b9ddf1
commit 297d14f5f8

View File

@ -41,6 +41,11 @@ public abstract class AbstractHealthAggregator implements HealthAggregator {
return health;
}
/**
* Actual aggregation logic.
* @param status list of given {@link Status} instances to aggregate
* @return aggregated {@link Status}
*/
protected abstract Status aggregateStatus(List<Status> status);
}