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 SpringBeanFactoryand 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 voiddestroy(T handler)TgetHandler()Class<? extends T>getHandlerType()voidsetBeanFactory(BeanFactory beanFactory)Callback that supplies the owning factory to a bean instance.StringtoString()
Constructor Detail
BeanCreatingHandlerProvider
public BeanCreatingHandlerProvider(Class<? extends T> handlerType)
Method Detail
setBeanFactory
public void setBeanFactory(BeanFactory beanFactory)
Description copied from interface:BeanFactoryAwareCallback 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:
setBeanFactoryin 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()