* Load properties collectors from the configuration
*/
private void loadPropertyCollectors() {
// load property collectors
Indexer indexer = runConfiguration.getIndexer();
Collectors collectors = indexer.getCollectors();
if (collectors == null) {
if (LOGGER.isLoggable(Level.FINE)) {
LOGGER.fine("No properties collector have been found");
}
return;
}
List<Collector> collectorList = collectors.getCollector();
// load the SPI set
final Set<PropertiesCollectorSPI> pcSPIs = PropertiesCollectorFinder
.getPropertiesCollectorSPI();