Remove class attribute and rename Element
Brought to you by:
niallg
I have a list of objects that derive from a base class (Query) and when the list is serialized out each object has the base class name and an attribute of the derived class name:
Example
<Queries>
<Query class=".io.snmpOutObject.GetBulkQuery"></Query>
<Query class="io.snmpOutObject.GetBulkQuery" "=""></Query>
</Queries>
Is there a way to get the element name to be just the derived classes name?
<Queries>
< GetBulkQuery>
< GetQuery">
</Queries>