I am trying to create a jaxb class hierarchy for a web services domain. I find it inconvenient that a subclass that overrides a getter method in the super class can change the element name that JAXB outputs, but the super class's one is also being written to the output. I am wondering if there is a way to suppress the getter in the super class.
Code:
@XmlType
class SuperClass
{
@XmlElement(name = "Name")
public String getName(){}
}
@XmlType
class SubClass extends SuperClass
{
@Override
@XmlElement(name = "CoolName")
public String getName(){}
}
When I add the SubClass element into an XmlRootElement, the output XML contains two elements, <Name> and <CoolName>. Is there a way to suppress <Name> being marshaled ?