Package com.dooapp.gaedo.finders.repository

Examples of com.dooapp.gaedo.finders.repository.SimpleServiceRepository


    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;
  }
View Full Code Here


   * Creates the service repository implementation, used for various purpose
   * @return
   */
  @Provides
  public ServiceRepository getServiceRepository() {
    return new SimpleServiceRepository();
  }
View Full Code Here

TOP

Related Classes of com.dooapp.gaedo.finders.repository.SimpleServiceRepository

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.