public class BeanCreatingHandlerProvider<T> extends Object implements BeanFactoryAware
BeanFactory
and also provides
an equivalent destroy method. Mainly for internal use to assist with initializing and
destroying handlers with per-connection lifecycle.Constructor and Description |
---|
BeanCreatingHandlerProvider(Class<? extends T> handlerType) |
Modifier and Type | Method and Description |
---|---|
void |
destroy(T handler) |
T |
getHandler() |
Class<? extends T> |
getHandlerType() |
void |
setBeanFactory(BeanFactory beanFactory)
Callback that supplies the owning factory to a bean instance.
|
String |
toString() |
public void setBeanFactory(BeanFactory beanFactory)
BeanFactoryAware
Invoked after the population of normal bean properties
but before an initialization callback such as
InitializingBean.afterPropertiesSet()
or a custom init-method.
setBeanFactory
in interface BeanFactoryAware
beanFactory
- owning BeanFactory (never null
).
The bean can immediately call methods on the factory.BeanInitializationException
public void destroy(T handler)
public T getHandler()