JAXB is generating xml like below and this is not root element.
<Activitys xsi:type="Activity" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
--------
-----
</Activitys>
How can we display like below?
<Activitys>
<Activity>
----
</Activity>
</Activitys>
XStream lib is generating like above and need to same with JAXB.