Class DelayedHk2InjectionManager
- All Implemented Interfaces:
InjectionManager
InjectionManager
that is able to delay service's registration
and injection to completeRegistration()
phase. During the Jersey bootstrap just keep the bindings and other
operation for a later use.- Author:
- Petr Bouda
-
Method Summary
Modifier and TypeMethodDescriptionvoid
CompletesInjectionManager
and the underlying DI provider.<U> U
Creates an object with the given class.<U> U
createAndInitialize
(Class<U> clazz) Creates, injects and post-constructs an object with the given class.createForeignDescriptor
(Binding binding) Creates and registers the descriptor in the underlying DI provider and returnsForeignDescriptor
that is specific descriptor for the underlying DI provider.<T> List<T>
getAllInstances
(Type clazz) Gets all services from this injection manager that implement this contract or have this implementation.<T> List<ServiceHolder<T>>
getAllServiceHolders
(Class<T> contract, Annotation... qualifiers) Gets all services from this injection manager that implements this contract or has this implementation along with information about the service which can be kept byServiceHolder
.<T> T
getInstance
(Class<T> clazz) Gets the best service from this injection manager that implements this contract or has this implementation.<T> T
getInstance
(Class<T> clazz, Annotation... annotations) Gets the best service from this injection manager that implements this contract or has this implementation.<T> T
getInstance
(Class<T> clazz, String classAnalyzer) Gets the best service from this injection manager that implements this contract or has this implementation.<T> T
getInstance
(Type clazz) Gets the best service from this injection manager that implements this contract or has this implementation.getInstance
(ForeignDescriptor foreignDescriptor) Gets the service instance according toForeignDescriptor
which is specific to the underlying DI provider.void
Analyzes the given object and inject into its fields and methods.void
This will analyze the given object and inject into its fields and methods.boolean
isRegistrable
(Class<?> clazz) Tests whether the providedclazz
can be registered by the implementation of theInjectionManager
.boolean
void
preDestroy
(Object preDestroyMe) Analyzes the given object and call the preDestroy method.void
Registers a collection of beans represented using fields in the provided descriptors.void
Registers a provider.void
Registers beans which are included inBinder
.void
Registers one bean represented using fields in the provided descriptor.void
shutdown()
Shuts down the entireInjectionManager
and the underlying DI provider.
-
Method Details
-
register
Description copied from interface:InjectionManager
Registers one bean represented using fields in the provided descriptor. The final bean can be direct bean or factory object which will create the bean at the time of injection.InjectionManager
is able to register a bean represented by a class or direct instance.- Parameters:
binding
- one descriptor.- See Also:
-
register
Description copied from interface:InjectionManager
Registers a collection of beans represented using fields in the provided descriptors. The final bean can be direct bean or factory object which will create the bean at the time of injection.InjectionManager
is able to register a bean represented by a class or direct instance.- Parameters:
bindings
- collection of descriptors.- See Also:
-
register
Description copied from interface:InjectionManager
Registers beans which are included inBinder
.Binder
can contains all descriptors extendingBinding
or other binders which are installed together in tree-structure. This method will get all descriptors bound in the given binder and register them in the order how the binders are installed together. In the tree structure, the deeper on the left side will be processed first.- Parameters:
binder
- collection of descriptors.- See Also:
-
register
Description copied from interface:InjectionManager
Registers a provider. An implementation of theInjectionManager
should test whether the type of the object can be registered using the methodInjectionManager.isRegistrable(Class)
. Then a caller has an certainty that the instance of the tested class can be registered inInjectionManager
. IfInjectionManager
is not able to register the provider thenIllegalArgumentException
is thrown.- Parameters:
provider
- object that can be registered inInjectionManager
.- Throws:
IllegalArgumentException
- provider cannot be registered.
-
completeRegistration
Description copied from interface:InjectionManager
CompletesInjectionManager
and the underlying DI provider. All registered components are bound to injection manager and after an invocation of this method all components are available using e.g.InjectionManager.getInstance(Class)
.- Throws:
IllegalStateException
-
getServiceLocator
-
isRegistrable
Description copied from interface:InjectionManager
Tests whether the providedclazz
can be registered by the implementation of theInjectionManager
.- Specified by:
isRegistrable
in interfaceInjectionManager
- Parameters:
clazz
- type that is tested whether is registrable by the implementation ofInjectionManager
.- Returns:
true
if theInjectionManager
is able to register this type.
-
getAllServiceHolders
Description copied from interface:InjectionManager
Gets all services from this injection manager that implements this contract or has this implementation along with information about the service which can be kept byServiceHolder
.- Specified by:
getAllServiceHolders
in interfaceInjectionManager
- Type Parameters:
T
- Instance type.- Parameters:
contract
- May not be null, and is the contract or concrete implementation to get the best instance of.qualifiers
- The set of qualifiers that must match this service definition.- Returns:
- An instance of the contract or impl along with other information. May return null if there is no provider that provides the given implementation or contract.
-
getInstance
Description copied from interface:InjectionManager
Gets the best service from this injection manager that implements this contract or has this implementation.Use this method only if other information is not needed otherwise use, otherwise use
InjectionManager.getAllServiceHolders(Class, Annotation...)
.- Specified by:
getInstance
in interfaceInjectionManager
- Type Parameters:
T
- Instance type.- Parameters:
clazz
- May not be null, and is the contract or concrete implementation to get the best instance of.annotations
- The set of qualifiers that must match this service definition.- Returns:
- An instance of the contract or impl. May return null if there is no provider that provides the given implementation or contract.
-
getInstance
Description copied from interface:InjectionManager
Gets the best service from this injection manager that implements this contract or has this implementation.Use this method only if other information is not needed otherwise use, otherwise use
InjectionManager.getAllServiceHolders(Class, Annotation...)
.- Specified by:
getInstance
in interfaceInjectionManager
- Type Parameters:
T
- Instance type.- Parameters:
clazz
- May not be null, and is the contract or concrete implementation to get the best instance of.- Returns:
- An instance of the contract or impl. May return null if there is no provider that provides the given implementation or contract.
-
getInstance
Description copied from interface:InjectionManager
Gets the service instance according toForeignDescriptor
which is specific to the underlying DI provider.- Specified by:
getInstance
in interfaceInjectionManager
- Parameters:
foreignDescriptor
- DI specific descriptor.- Returns:
- service instance according to foreign descriptor.
-
getInstance
Description copied from interface:InjectionManager
Gets the best service from this injection manager that implements this contract or has this implementation.Use this method only if other information is not needed otherwise use, otherwise use
InjectionManager.getAllServiceHolders(Class, Annotation...)
.- Specified by:
getInstance
in interfaceInjectionManager
- Type Parameters:
T
- Instance type.- Parameters:
clazz
- May not be null, and is the contract or concrete implementation to get the best instance of.- Returns:
- An instance of the contract or impl. May return null if there is no provider that provides the given implementation or contract.
-
getInstance
Description copied from interface:InjectionManager
Gets the best service from this injection manager that implements this contract or has this implementation.Use this method only if other information is not needed otherwise use, otherwise use
InjectionManager.getAllServiceHolders(Class, Annotation...)
.- Specified by:
getInstance
in interfaceInjectionManager
- Type Parameters:
T
- Instance type.- Parameters:
clazz
- May not be null, and is the contract or concrete implementation to get the best instance of.classAnalyzer
- -------- Returns:
- An instance of the contract or impl. May return null if there is no provider that provides the given implementation or contract.
-
getAllInstances
Description copied from interface:InjectionManager
Gets all services from this injection manager that implement this contract or have this implementation.Use this method only if other information is not needed otherwise use, otherwise use
InjectionManager.getAllServiceHolders(Class, Annotation...)
.- Specified by:
getAllInstances
in interfaceInjectionManager
- Type Parameters:
T
- Instance type.- Parameters:
clazz
- May not be null, and is the contract or concrete implementation to get the best instance of.- Returns:
- A list of services implementing this contract or concrete implementation. May not return null, but may return an empty list
-
preDestroy
Description copied from interface:InjectionManager
Analyzes the given object and call the preDestroy method. The object given will not be managed by bean manager.- Specified by:
preDestroy
in interfaceInjectionManager
- Parameters:
preDestroyMe
- The object to preDestroy
-
shutdown
public void shutdown()Description copied from interface:InjectionManager
Shuts down the entireInjectionManager
and the underlying DI provider.Shutdown phase is dedicated to make some final cleaning steps regarding underlying DI provider.
- Specified by:
shutdown
in interfaceInjectionManager
-
isShutdown
public boolean isShutdown()Description copied from interface:InjectionManager
- Specified by:
isShutdown
in interfaceInjectionManager
- Returns:
- Whether the
InjectionManager
has been shutdown.
-
create
Description copied from interface:InjectionManager
Creates an object with the given class.The object created is not managed by the injection manager.
- Specified by:
create
in interfaceInjectionManager
- Parameters:
clazz
- The non-null class to create this object from;- Returns:
- An instance of the object that has been created.
-
createAndInitialize
Description copied from interface:InjectionManager
Creates, injects and post-constructs an object with the given class. This is equivalent to calling thecreate-class
method followed by theinject-class
method followed by thepost-construct
method.The object created is not managed by the injection manager.
- Specified by:
createAndInitialize
in interfaceInjectionManager
- Parameters:
clazz
- The non-null class to create this object from;- Returns:
- An instance of the object that has been created, injected and post constructed.
-
createForeignDescriptor
Description copied from interface:InjectionManager
Creates and registers the descriptor in the underlying DI provider and returnsForeignDescriptor
that is specific descriptor for the underlying DI provider.- Specified by:
createForeignDescriptor
in interfaceInjectionManager
- Parameters:
binding
- jersey descriptor.- Returns:
- specific foreign descriptor of the underlying DI provider.
-
inject
Description copied from interface:InjectionManager
Analyzes the given object and inject into its fields and methods. The object injected in this way will not be managed by HK2- Specified by:
inject
in interfaceInjectionManager
- Parameters:
injectMe
- The object to be analyzed and injected into
-
inject
Description copied from interface:InjectionManager
This will analyze the given object and inject into its fields and methods. The object injected in this way will not be managed by HK2- Specified by:
inject
in interfaceInjectionManager
- Parameters:
injectMe
- The object to be analyzed and injected into
-