Class Modules
java.lang.Object
org.elasticsearch.common.inject.util.Modules
public final class Modules
extends java.lang.Object
Static utility methods for creating and working with instances of
Module.- Since:
- 2.0
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceModules.OverriddenModuleBuilderSee the EDSL example atoverride(). -
Field Summary
Fields Modifier and Type Field Description static ModuleEMPTY_MODULE -
Method Summary
Modifier and Type Method Description static Modulecombine(java.lang.Iterable<? extends Module> modules)Returns a new module that installs all ofmodules.static Modulecombine(Module... modules)Returns a new module that installs all ofmodules.static Modules.OverriddenModuleBuilderoverride(java.lang.Iterable<? extends Module> modules)Returns a builder that creates a module that overlays override modules over the given modules.static Modules.OverriddenModuleBuilderoverride(Module... modules)Returns a builder that creates a module that overlays override modules over the given modules.
-
Field Details
-
Method Details
-
override
Returns a builder that creates a module that overlays override modules over the given modules. If a key is bound in both sets of modules, only the binding from the override modules is kept. This can be used to replace the bindings of a production module with test bindings:Module functionalTestModule = Modules.override(new ProductionModule()).with(new TestModule());Prefer to write smaller modules that can be reused and tested without overrides.
- Parameters:
modules- the modules whose bindings are open to be overridden
-
override
public static Modules.OverriddenModuleBuilder override(java.lang.Iterable<? extends Module> modules)Returns a builder that creates a module that overlays override modules over the given modules. If a key is bound in both sets of modules, only the binding from the override modules is kept. This can be used to replace the bindings of a production module with test bindings:Module functionalTestModule = Modules.override(getProductionModules()).with(getTestModules());Prefer to write smaller modules that can be reused and tested without overrides.
- Parameters:
modules- the modules whose bindings are open to be overridden
-
combine
Returns a new module that installs all ofmodules. -
combine
Returns a new module that installs all ofmodules.
-