I'd like to produce following behaviour:
User in the browser saves some entity. After entity is saved on the server side, it generates notification and it must notify all other clients by means of Atmosphere with updated entity instance.
So the problem is how I can push POJO entity through Atmosphere interface? Last one supports Serializable types to transfer over wire whereas RequestFactory has another serialization mechanism.
So I need transform POJO entity to autobean as this is done by RF and send to client. Anybody knows how it can be done?