@Singleton
@Provides
public final BayeuxServerImpl getBayeuxServer(final ObjectMapper om) {
BayeuxServerImpl server = new BayeuxServerImpl();
server.setOption(BayeuxServerImpl.JSON_CONTEXT, new JacksonJSONContextServer() {
@Override
public ObjectMapper getObjectMapper() {
return om;
}
});