use of org.commonjava.indy.client.core.module.IndyStoresClientModule in project indy by Commonjava.
the class Indy method setupStandardModules.
private void setupStandardModules() {
final Set<IndyClientModule> standardModules = new HashSet<>();
standardModules.add(new IndyStoresClientModule());
standardModules.add(new IndyContentClientModule());
standardModules.add(new IndySchedulerClientModule());
standardModules.add(new IndyStatsClientModule());
standardModules.add(new IndyNfcClientModule());
standardModules.add(new IndyMaintenanceClientModule());
for (final IndyClientModule module : standardModules) {
setup(module);
}
}
Aggregations