use of org.killbill.billing.util.glue.CallContextModule in project killbill by killbill.
the class TestOverdueModule method configure.
@Override
protected void configure() {
super.configure();
install(new AuditModule(configSource));
install(new CacheModule(configSource));
install(new ConfigModule(configSource));
install(new CallContextModule(configSource));
install(new CustomFieldModule(configSource));
install(new EmailModule(configSource));
install(new MockAccountModule(configSource));
install(new MockEntitlementModule(configSource, new ApplicatorBlockingApi()));
install(new MockInvoiceModule(configSource));
install(new MockTagModule(configSource, true));
install(new TemplateModule(configSource));
install(new MockTenantModule(configSource));
install(new MemoryGlobalLockerModule(configSource));
bind(OverdueBusListenerTester.class).asEagerSingleton();
bind(TestOverdueHelper.class).asEagerSingleton();
}
use of org.killbill.billing.util.glue.CallContextModule in project killbill by killbill.
the class TestJunctionModule method configure.
@Override
protected void configure() {
super.configure();
install(new CacheModule(configSource));
install(new ConfigModule(configSource));
install(new CallContextModule(configSource));
install(new MockTenantModule(configSource));
// Needed because Entitlement depends on Security
install(new KillBillShiroModuleOnlyIniRealm(configSource));
install(new SecurityModule(configSource));
}
use of org.killbill.billing.util.glue.CallContextModule in project killbill by killbill.
the class TestDefaultSubscriptionModule method configure.
@Override
protected void configure() {
super.configure();
install(new CatalogModule(configSource));
install(new CallContextModule(configSource));
install(new CacheModule(configSource));
install(new ConfigModule(configSource));
install(new MockTenantModule(configSource));
bind(TestSubscriptionHelper.class).asEagerSingleton();
bind(TestApiListener.class).asEagerSingleton();
bind(SubscriptionTestInitializer.class).to(DefaultSubscriptionTestInitializer.class).asEagerSingleton();
}
use of org.killbill.billing.util.glue.CallContextModule in project killbill by killbill.
the class TestTenantModule method configure.
@Override
protected void configure() {
super.configure();
install(new CacheModule(configSource));
install(new ConfigModule(configSource));
install(new CallContextModule(configSource));
}
use of org.killbill.billing.util.glue.CallContextModule in project killbill by killbill.
the class KillbillServerModule method installKillbillModules.
protected void installKillbillModules() {
install(new AuditModule(configSource));
install(new NodesModule(configSource));
install(new BroadcastModule(configSource));
install(new BeatrixModule(configSource));
install(new CacheModule(configSource));
install(new ConfigModule(configSource));
install(new CallContextModule(configSource));
install(new CatalogModule(configSource));
install(new CurrencyModule(configSource));
install(new CustomFieldModule(configSource));
install(new DefaultAccountModule(configSource));
install(new DefaultEntitlementModule(configSource));
install(new DefaultInvoiceModule(configSource));
install(new DefaultJunctionModule(configSource));
install(new DefaultOverdueModule(configSource));
install(new DefaultSubscriptionModule(configSource));
install(new EmailModule(configSource));
install(new ExportModule(configSource));
install(new GlobalLockerModule(configSource));
install(new KillBillShiroAopModule());
install(new KillbillApiAopModule());
install(new KillBillShiroWebModule(servletContext, skifeConfigSource));
install(new NonEntityDaoModule(configSource));
install(new PaymentModule(configSource));
install(new RecordIdModule(configSource));
install(new SecurityModule(configSource));
install(new TagStoreModule(configSource));
install(new TemplateModule(configSource));
install(new DefaultTenantModule(configSource));
install(new UsageModule(configSource));
install(new DefaultJaxrsModule(configSource));
}
Aggregations