public class DelayedHk2InjectionManager extends Object
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.Modifier and Type | Method and Description |
---|---|
void |
completeRegistration()
Completes
InjectionManager and the underlying DI provider. |
<U> U |
create(Class<U> clazz)
Creates an object with the given class.
|
<U> U |
createAndInitialize(Class<U> clazz)
Creates, injects and post-constructs an object with the given class.
|
ForeignDescriptor |
createForeignDescriptor(Binding binding)
Creates and registers the descriptor in the underlying DI provider and returns
ForeignDescriptor 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 by
ServiceHolder . |
<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.
|
Object |
getInstance(ForeignDescriptor foreignDescriptor)
Gets the service instance according to
ForeignDescriptor which is specific to the underlying DI provider. |
<T> T |
getInstance(Type clazz)
Gets the best service from this injection manager that implements this contract or has this implementation.
|
ServiceLocator |
getServiceLocator() |
void |
inject(Object injectMe)
Analyzes the given object and inject into its fields and methods.
|
void |
inject(Object injectMe,
String classAnalyzer)
This will analyze the given object and inject into its fields and methods.
|
boolean |
isRegistrable(Class<?> clazz)
Tests whether the provided
clazz can be registered by the implementation of the InjectionManager . |
boolean |
isShutdown()
|
void |
preDestroy(Object preDestroyMe)
Analyzes the given object and call the preDestroy method.
|
void |
register(Binder binder)
Registers beans which are included in
Binder . |
void |
register(Binding binding)
Registers one bean represented using fields in the provided descriptor.
|
void |
register(Iterable<Binding> bindings)
Registers a collection of beans represented using fields in the provided descriptors.
|
void |
register(Object provider)
Registers a provider.
|
void |
shutdown()
Shuts down the entire
InjectionManager and the underlying DI provider. |
public void register(Binding binding)
InjectionManager
InjectionManager
is able to register a bean
represented by a class or direct instance.binding
- one descriptor.ClassBinding
,
InstanceBinding
,
SupplierClassBinding
,
SupplierInstanceBinding
public void register(Iterable<Binding> bindings)
InjectionManager
InjectionManager
is able to
register a bean represented by a class or direct instance.bindings
- collection of descriptors.ClassBinding
,
InstanceBinding
,
SupplierClassBinding
,
SupplierInstanceBinding
public void register(Binder binder)
InjectionManager
Binder
. Binder
can contains all descriptors extending
Binding
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.binder
- collection of descriptors.ClassBinding
,
InstanceBinding
,
SupplierClassBinding
,
SupplierInstanceBinding
public void register(Object provider) throws IllegalArgumentException
InjectionManager
InjectionManager
should test whether the type of the object can be
registered using the method InjectionManager.isRegistrable(Class)
. Then a caller has an certainty that the instance of the tested
class can be registered in InjectionManager
. If InjectionManager
is not able to register the provider
then IllegalArgumentException
is thrown.provider
- object that can be registered in InjectionManager
.IllegalArgumentException
- provider cannot be registered.public void completeRegistration() throws IllegalStateException
InjectionManager
InjectionManager
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)
.IllegalStateException
public ServiceLocator getServiceLocator()
public boolean isRegistrable(Class<?> clazz)
InjectionManager
clazz
can be registered by the implementation of the InjectionManager
.isRegistrable
in interface InjectionManager
clazz
- type that is tested whether is registrable by the implementation of InjectionManager
.true
if the InjectionManager
is able to register this type.public <T> List<ServiceHolder<T>> getAllServiceHolders(Class<T> contract, Annotation... qualifiers)
InjectionManager
ServiceHolder
.getAllServiceHolders
in interface InjectionManager
T
- Instance type.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.public <T> T getInstance(Class<T> clazz, Annotation... annotations)
InjectionManager
Use this method only if other information is not needed otherwise use, otherwise use
InjectionManager.getAllServiceHolders(Class, Annotation...)
.
getInstance
in interface InjectionManager
T
- Instance type.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.public <T> T getInstance(Type clazz)
InjectionManager
Use this method only if other information is not needed otherwise use, otherwise use
InjectionManager.getAllServiceHolders(Class, Annotation...)
.
getInstance
in interface InjectionManager
T
- Instance type.clazz
- May not be null, and is the contract or concrete implementation to get the best instance of.public Object getInstance(ForeignDescriptor foreignDescriptor)
InjectionManager
ForeignDescriptor
which is specific to the underlying DI provider.getInstance
in interface InjectionManager
foreignDescriptor
- DI specific descriptor.public <T> T getInstance(Class<T> clazz)
InjectionManager
Use this method only if other information is not needed otherwise use, otherwise use
InjectionManager.getAllServiceHolders(Class, Annotation...)
.
getInstance
in interface InjectionManager
T
- Instance type.clazz
- May not be null, and is the contract or concrete implementation to get the best instance of.public <T> T getInstance(Class<T> clazz, String classAnalyzer)
InjectionManager
Use this method only if other information is not needed otherwise use, otherwise use
InjectionManager.getAllServiceHolders(Class, Annotation...)
.
getInstance
in interface InjectionManager
T
- Instance type.clazz
- May not be null, and is the contract or concrete implementation to get the best instance of.classAnalyzer
- -------public <T> List<T> getAllInstances(Type clazz)
InjectionManager
Use this method only if other information is not needed otherwise use, otherwise use
InjectionManager.getAllServiceHolders(Class, Annotation...)
.
getAllInstances
in interface InjectionManager
T
- Instance type.clazz
- May not be null, and is the contract or concrete implementation to get the best instance of.public void preDestroy(Object preDestroyMe)
InjectionManager
preDestroy
in interface InjectionManager
preDestroyMe
- The object to preDestroypublic void shutdown()
InjectionManager
InjectionManager
and the underlying DI provider.
Shutdown phase is dedicated to make some final cleaning steps regarding underlying DI provider.
shutdown
in interface InjectionManager
public boolean isShutdown()
InjectionManager
isShutdown
in interface InjectionManager
InjectionManager
has been shutdown.public <U> U create(Class<U> clazz)
InjectionManager
The object created is not managed by the injection manager.
create
in interface InjectionManager
clazz
- The non-null class to create this object from;public <U> U createAndInitialize(Class<U> clazz)
InjectionManager
create-class
method followed by the inject-class
method followed by the post-construct
method.
The object created is not managed by the injection manager.
createAndInitialize
in interface InjectionManager
clazz
- The non-null class to create this object from;public ForeignDescriptor createForeignDescriptor(Binding binding)
InjectionManager
ForeignDescriptor
that is specific
descriptor for the underlying DI provider.createForeignDescriptor
in interface InjectionManager
binding
- jersey descriptor.public void inject(Object injectMe)
InjectionManager
inject
in interface InjectionManager
injectMe
- The object to be analyzed and injected intopublic void inject(Object injectMe, String classAnalyzer)
InjectionManager
inject
in interface InjectionManager
injectMe
- The object to be analyzed and injected intoCopyright © 2007-2024, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.