HowTo: Map inner XML Attributes
Hi,
I have a XML like this.
Code:
<?xml version="1.0" encoding="UTF-8"?>
<Record>
<username>Adish</username>
<registrants>
<registrant>
<entity>
<individual>
<name>Adish</name>
<address>Some Address </address>
<city>Some City</city>
</individual>
</entity>
</registrant>
</registrants>
<Check>
<individual>
<name>Adish</name>
<address>Some Address </address>
<city>Some City</city>
</individual>
</Check>
</Record>
I have created an Indivisual class but how i will map with XStreamMarshaller
Any help will be greatly appreciated..
Thanks