return new ServiceGeneratorImpl(provider);
}
public static ServiceRepository build(
Collection<FinderCrudService> configuration) {
ServiceRepository serviceRepository = new SimpleServiceRepository();
for (FinderCrudService finderCrudService : configuration) {
log.info("adding service " + finderCrudService);
serviceRepository.add(finderCrudService);
}
return serviceRepository;
}