Interface InjectionManagerFactory
-
public interface InjectionManagerFactoryFactory which is able to createInjectionManager. Every DI provider must create its ownInjectionManagerFactoryand register it in META-INF.services. Then theInjectionManagerFactorycan be looked up andInjectionManagercan be created.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default InjectionManagercreate()Load a new injection manager without parent and initial binder.InjectionManagercreate(Object parent)Load a new injection manager with parent object.
-
-
-
Method Detail
-
create
default InjectionManager create()
Load a new injection manager without parent and initial binder.- Returns:
- initialized injection manager.
-
create
InjectionManager create(Object parent)
Load a new injection manager with parent object.- Parameters:
parent- injection manager parent or concrete DI specific object which is compatible with DI provider.- Returns:
- initialized injection manager.
-
-