I'm trying to write my first xsd which will have JAXB mapped POJOs generated from it, to be used in a webservice. There will be three related classes which I would like to see expressed in xml as...
<stringKey systemName="string key 1" businessName="Customer">Glorious strings</stringKey>
<numberKey systemName="number key 1" businessName="Invoice number">1025.52</numberKey>
<dateKey systemName="date key 1" businessName="Invoice date">1970-01-01</dateKey>
I'm trying to reuse the declaration of the annotations so the JAXB generated POJOs can belong to the same interface. So far I have the following xsd...
<xs:complexType name="dateKey">
<xs:simpleContent>
<xs:extension base="namedElement">
<xs:attribute type="xs:dateTime" name="keyValue" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="namedElement" abstract="true">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute type="xs:string" name="businessName" />
<xs:attribute type="xs:string" name="systemName" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
This gets me part way there, it gives me xml like...
<dateKey systemName="date key 1" businessName="Invoice date"><keyValue>1970-01-01</keyValue></dateKey>
I am having difficulty reusing a type which declares the annotations, while overriding the base of that type. (Note I am trying to get rid of the 'keyValue' element in the above example). Any ideas?
EDIT: I've noticed the xsd snippet does not validate the following xml snippet - that seems to have been lost in the refactoring, but I hope you get the point...