Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have following schema

<xs:simpleType name="enumType">    
    <xs:restriction base="xs:string">    
        <xs:enumeration value="STRING_ONE"/>
        <xs:enumeration value="STRING_TWO"/>
    </xs:restriction>
</xs:simpleType>

As long as i get a known string, I can swithc and it to my jaxbobject which expects a enumType object. But what if i don't know this string ? is there a way to handle it based on JAXB Schema ? I know based on enum its not possible.


Edit: Trying to make it more clear

Wit the given Schema design, my JAXBObject, which accepts enumType as a parameter, can only have 2 input values i.e. STRING_ONE or STRING_TWO which will be converted to XML as part of marshalling.

The question is, that what if, I want to handle a situation through my schema design that if I can have an object of enumType then good otherwise I can give an XML to JAXBObject instead of enumType and it still parses it.

share|improve this question
1  
no idea what the question is – Pangea Oct 25 '12 at 19:35
Are you looking to change the property from an enum to a string so that you can handle more than the values defined in the XML schema? – Blaise Doughan Oct 25 '12 at 21:01
This is the last approach and yes, it will definitely work. But i was wondering if there is an option by which we can specifiy a field in schema which can handle both the enumeration and enumeration base value (string in this case). – Em Ae Oct 25 '12 at 21:45

1 Answer

up vote 1 down vote accepted

From the XSD point of view, it sounds like you want to be able to write

<xs:simpleType name="soft-enumeration">
  <xs:union>
    <xs:simpleType>
      <xs:restriction base="xs:string">
        <xs:enumeration value="STRING_ONE"/>
        <xs:enumeration value="STRING_TWO"/>
      </xs:restriction>
    </xs:simpleType>
    <xs:simpleType>
      <xs:union memberTypes="xs:string"/>
    </xs:simpleType>
  </xs:union>
</xs:simpleType>

This type includes the enumeration you describe, but it then unions it with xs:string, so as to accept other values as well. If your schema interface gives you access to information about which member type of the union was used, then you can use that information to treat instances of STRING_ONE and STRING_TWO differently from other strings.

I have no idea whether jaxb does anything useful with this idiom, however; there you're on your own.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.