I have this event in service A
Event A{ Class1 i; Class2 j; String k; }
and this in service B
Event B{ String k; ClaSs2 j;// No same class but interconvertable }
I want to handle the event from service A in service B, ignoring Class1 that service B doesn’t know about. However xstream will complain. So I’m looking for a converter implementation that will just ignore the fields that it doesn’t find in service B and go on with the conversion.