Tabnine Logo
DefaultOverdueModule
Code IndexAdd Tabnine to your IDE (free)

How to use
DefaultOverdueModule
in
com.ning.billing.overdue.glue

Best Java code snippets using com.ning.billing.overdue.glue.DefaultOverdueModule (Showing top 6 results out of 315)

origin: com.ning.billing/killbill-overdue

@Override
protected void configure() {
  installOverdueUserApi();
  // internal bindings
  installOverdueService();
  installOverdueWrapperFactory();
  installOverdueEmail();
  final OverdueProperties config = new ConfigurationObjectFactory(configSource).build(OverdueProperties.class);
  bind(OverdueProperties.class).toInstance(config);
  bind(OverdueNotifier.class).annotatedWith(Names.named(OVERDUE_NOTIFIER_CHECK_NAMED)).to(OverdueCheckNotifier.class).asEagerSingleton();
  bind(OverdueNotifier.class).annotatedWith(Names.named(OVERDUE_NOTIFIER_ASYNC_BUS_NAMED)).to(OverdueAsyncBusNotifier.class).asEagerSingleton();
  bind(OverduePoster.class).annotatedWith(Names.named(OVERDUE_NOTIFIER_CHECK_NAMED)).to(OverdueCheckPoster.class).asEagerSingleton();
  bind(OverduePoster.class).annotatedWith(Names.named(OVERDUE_NOTIFIER_ASYNC_BUS_NAMED)).to(OverdueAsyncBusPoster.class).asEagerSingleton();
}
origin: com.ning.billing/killbill-overdue

protected void installOverdueWrapperFactory() {
  bind(OverdueWrapperFactory.class).asEagerSingleton();
}
origin: com.ning.billing/killbill-overdue

  @Override
  protected void configure() {
    super.configure();

    install(new AuditModule());
    install(new CacheModule(configSource));
    install(new CallContextModule());
    install(new CustomFieldModule());
    install(new EmailModule(configSource));
    install(new MockAccountModule());
    install(new MockEntitlementModule());
    install(new MockInvoiceModule());
    install(new MockTagModule());
    install(new TemplateModule());

    // We can't use the dumb mocks in MockJunctionModule here
    install(new ApplicatorMockJunctionModule());

    bind(OverdueBusListenerTester.class).asEagerSingleton();
    bind(TestOverdueHelper.class).asEagerSingleton();
  }
}
origin: com.ning.billing/killbill-overdue

protected void installOverdueEmail() {
  bind(OverdueEmailFormatterFactory.class).to(DefaultOverdueEmailFormatterFactory.class).asEagerSingleton();
  bind(OverdueEmailGenerator.class).asEagerSingleton();
}
origin: com.ning.billing/killbill-overdue

  @Override
  public void installOverdueUserApi() {
    bind(OverdueUserApi.class).to(DefaultOverdueUserApi.class).asEagerSingleton();
  }
}
origin: com.ning.billing/killbill-overdue

protected void installOverdueService() {
  bind(OverdueService.class).to(DefaultOverdueService.class).asEagerSingleton();
}
com.ning.billing.overdue.glueDefaultOverdueModule

Most used methods

  • bind
  • configure
  • installOverdueEmail
  • installOverdueService
  • installOverdueUserApi
  • installOverdueWrapperFactory

Popular in Java

  • Start an intent from android
  • getSharedPreferences (Context)
  • notifyDataSetChanged (ArrayAdapter)
  • putExtra (Intent)
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now