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 a schema similar to the following...

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="t1" type="t1Type"/>
    <xs:element name="t2" type="t2Type"/>
    <xs:element name="t3" type="t3Type"/>
</xs:schema>

At first I thought this was an invalid schema but all the checks I do online validate it. This means the person supplying the XML can send any (or all) the types listed and still conform to the schema.

How do I go about mapping and unmarshalling all the different possibilities using JAXB?

I have no idea which of them I will be recieving.

share|improve this question

1 Answer

up vote 0 down vote accepted

You will need to leverage a factory class annotated with @XmlRegistry (usually called ObjectFactory). That class will contain a create method for each possible root element annotated with @XmlElementDecl.

Example

share|improve this answer
in the example provided you know which type you are receiving what happens if I have no idea? I could get any type back how do I unmarshall? – Jackie Oct 16 '12 at 15:15
@Jackie - You do not need to know the type of object to perform the unmarshal operation. If you don't know what you are unmarshalling you will need to do an instanceof of getClass() to determine what you have before you can perform any type specific calls on the data. – Blaise Doughan Oct 16 '12 at 15:28
1  
Second part was what I needed thanks! Great Blog post BTW. – Jackie Oct 16 '12 at 20:56

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.