Package com.tll.di

Examples of com.tll.di.RefDataModule


  private final ListingProcessor processor = new ListingProcessor();

  @Override
  protected void addModules(List<Module> modules) {
    modules.add(new RefDataModule());

    // hack: create mail module to avoid guice ConfigurationException
    // as it implicitly binds at the MailModule constrctor
    modules.add(new MailModule(Config.load(new ConfigRef("config-mail.properties"))));
View Full Code Here


@Test(groups = { "server", "client-persist" })
public class PersistServiceDelegateTest extends AbstractDbAwareTest {

  @Override
  protected void addModules(List<Module> modules) {
    modules.add(new RefDataModule());

    // hack: create mail module to avoid guice ConfigurationException
    // as it implicitly binds at the MailModule constrctor
    modules.add(new MailModule(Config.load(new ConfigRef("config-mail.properties"))));
View Full Code Here

TOP

Related Classes of com.tll.di.RefDataModule

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.