I have a model that looks like:
@XStreamAlias("article")
class Article {
List<String> tags;
List<String> categories;
}
XStream serializes to XML that looks like:
<article>
<tags>
<string>foo</string>
</tags>
<categories>
<string>bar</string>
</categories>
</article>
My question is how can I make it so that <string>foo</string>
becomes <tag>foo<tag>
and <string>bar</string>
becomes <category>bar</category>
? I'm unable to change the structure of my model since I am using the Morphia ODM to create the Article instances (article must contain List<String>
).