I have a set of complex types in my XML schema file. Basically I have a bunch of "response" objects. Each response object follows the same general format but in more specific ways. So, for example:
<xsd:simpleType name="Transition">
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:complexType name="ResponseBlock"/>
<xsd:complexType name="Response">
<xsd:complexContent>
<xsd:sequence>
<xsd:element name="transition" type="dto:Transition"/>
<xsd:element name="data" type="dto:ResponseBlock"/>
</xsd:sequence>
</xsd:complexContent>
</xsd:complexType>
I'd like to make it possible to have a "subclass" of this where the "transition" and "ResponseBlock" are replaced with valid "subclasses" of each of those types. I.e. I have already derived them by restriction/extension and want to include them in a Response which is itself derived by restriction:
<xsd:simpleType name="IDTransition">
<xsd:restriction base="dto:Transition">
<xsd:enumeration value="NEXT_PAGE"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:complexType name="IDResponseBlock">
<xsd:complexContent>
<xsd:extension base="dto:ResponseBlock">
<xsd:sequence>
<xsd:element type="xsd:int" name="userID"/>
<xsd:element type="xsd:string" name="userName"/>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="IDResponse">
<xsd:complexContent>
<xsd:restriction base="Response">
<xsd:sequence>
<xsd:element name="transition" type="dto:IDTransition"/>
<xsd:element name="data" type="dto:IDResponseBlock"/>
</xsd:sequence>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
This way, using JAXB, I could generate a fully object-oriented inheritance structure. But it doesn't seem to compile; Eclipse is showing an error:
derivation-ok-restriction.5.4.2: Error for type 'IDResponse'. The particle of the type is not a valid restriction of the particle of the base. rcase-Recurse.2: There is not a complete functional mapping between the particles.
Any ideas on how I can accomplish this?