Class BaseBQModule

java.lang.Object
io.bootique.di.BaseBQModule
All Implemented Interfaces:
BQModule

public abstract class BaseBQModule extends Object implements BQModule
A common superclass of modules with an empty implementation of configure(Binder). It may come handy as modules may bind services declaratively by creating methods annotated by @Provides and don't need to implement 'configure'.
  • Constructor Details

    • BaseBQModule

      public BaseBQModule()
  • Method Details

    • configure

      public void configure(Binder binder)
      An empty implementation of the Module contract.
      Specified by:
      configure in interface BQModule
      Parameters:
      binder - a binder object passed by the injector assembly environment.