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

I am defining some java objects based on some xml schema files, and I have encountered the following problem. If i have the following code, i do not know how to tread it.

< xs:attribute name="ObjectRef" type="xs:IDREF" prefix:refTypes="ObjRef1|ObjRef2" use="optional" />

should be something like

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MyClass ")
class MyClass {

    @XmlAttribute(name = "ObjectRef")
    @XmlIDREF
    @XmlSchemaType(name = "IDREF")
    protected Object objectRef;
}

where ObjectRef may be only one of the types: ObjRef1 or ObjRef2

I cannot use interfaces,it says "JAXB can't handle interfaces".

I cannot use abstract classes, it compiles, but inserts an unneeded field in xml.

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ObjRef1 ")
public class ObjRef1 extends ObjRef {
}


@XmlType(name = "ObjRef")
public abstract class ObjRef {

    @XmlAttribute(name = "ID")
    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
    @XmlID
    @XmlSchemaType(name = "ID")
    protected String id;


   public String getID() {
       return id;
   }
   public void setID(String value) {
       this.id = value;
   }   
}

< ObjRef1 
   ID="5955">
   <ID>5955</ID>   --this is not needed
/>

The idea is that the property Object objectRef may be only once. I know about the following list construction, but i do not want to use a list with single element.

@XmlElements({
            @XmlElement(name = "Text", type = Text.class),
            @XmlElement(name = "SomeObject", type = SomeObject.class),
            @XmlElement(name = "Someobject2", type = Someobject2.class)
        })
    protected List<Object> textOrSomeObjectOrSomeObject2;

Please help me. Thank you in advance, Lidy

UPDATED: I was looking all the day for a clever solution, but i didn't found any. Probably,the simplest way is to use just "Object objRef" .As the inheritance is not working for me (with @XmlID and @XmlIDREf). I just wanted to use a constrain, because by using the Object, the property may be of any type, but i need it to be,only one from some certain types. Meanwhile i go further with my coding,and I will be waiting for new suggestions. Thank you.

share|improve this question
Do you know you can auto generate java classes from schema ?? See xjc – Sikorski Nov 11 '12 at 18:00
yes, i know, I did it with xjc, it just generated: protected Object objectRef; – Lidia Nov 11 '12 at 18:08

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.