public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
if (bean instanceof BayeuxServerImpl) {
BayeuxServerImpl bayeux = (BayeuxServerImpl) bean;
// add the web socket transport
bayeux.addTransport(new WebSocketTransport(bayeux));
}
return bean;
}