Class BeanCreatingHandlerProvider<T>
- java.lang.Object
- org.springframework.web.socket.handler.BeanCreatingHandlerProvider<T>
- Type Parameters:
T
- the handler type
- All Implemented Interfaces:
Aware
,BeanFactoryAware
public class BeanCreatingHandlerProvider<T> extends Object implements BeanFactoryAware
Instantiates a target handler through a SpringBeanFactory
and also provides an equivalent destroy method. Mainly for internal use to assist with initializing and destroying handlers with per-connection lifecycle.- Since:
- 4.0
- Author:
- Rossen Stoyanchev
Constructor Summary
Constructors Constructor Description BeanCreatingHandlerProvider(Class<? extends T> handlerType)
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method 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()
Constructor Detail
BeanCreatingHandlerProvider
public BeanCreatingHandlerProvider(Class<? extends T> handlerType)
Method Detail
setBeanFactory
public void setBeanFactory(BeanFactory beanFactory)
Description copied from interface:BeanFactoryAware
Callback that supplies the owning factory to a bean instance.Invoked after the population of normal bean properties but before an initialization callback such as
InitializingBean.afterPropertiesSet()
or a custom init-method.- Specified by:
setBeanFactory
in interfaceBeanFactoryAware
- Parameters:
beanFactory
- owning BeanFactory (nevernull
). The bean can immediately call methods on the factory.- See Also:
BeanInitializationException
getHandlerType
public Class<? extends T> getHandlerType()
getHandler
public T getHandler()