I have the following xml
<MyPojo><name>Jason</name><age>25</age><meta><occupation>Engineer</occupation></meta></MyPojo>
I need to deserialize it to the following POJO:
public class MyPojo { private String name; private int age; private String occupation;}
The problem here is that occupation
is wrapped within meta
element