Graph currentLog, Date now) {
Model configurationModel = JenaUtil
.getModelFromGraph(currentConfiguration);
Model logModel = JenaUtil.getModelFromGraph(currentLog);
Set<Source> result = new HashSet<Source>();
ResIterator sourceIter = configurationModel.listSubjectsWithProperty(
RDF.type, AGGREGATOR.AggregatedSource);
while (sourceIter.hasNext()) {
Resource aggregatedSource = sourceIter.nextResource();
Date lastAggregation = getLastAggregationDate((Resource) aggregatedSource
.inModel(logModel));
if (lastAggregation == null) {
result.add(new SourceImpl(aggregatedSource.getURI()));
} else {