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

Is there intelligent way to identify relation between elements using JAXB.

For example: If element SMTP is referred/used in the element Notification and element Configuration

<element name="SMTP">
    <complexType>
      <sequence>
              <element name="fromEmailAddress" type="string"/>
              <element name="hostName" type="string"/>
              <element name="portNumber" type="string"/>
      </sequence>
  </complexType>
 </element> 

<element name="Notification">
       <complexType>
        <sequence>
           <element ref="tns:SMTP"/>
         </sequence>
       </complexType>
 </element>

<element name="Configuration">
       <complexType>
        <sequence>
           <element ref="tns:SMTP"/>
         </sequence>
       </complexType>
 </element>

Is there way to identify this relation/dependancy(SMTP with Notification & Configuration) using JAXB(iam using JAXB to generate classes for the above elements present in my XSD).If it is, sample java code will be helpful

Thanks Ravi

share|improve this question

1 Answer

The Configuration and Notification classes will be generated with an SMTP property:

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "smtp"
})
@XmlRootElement(name = "Configuration")
public class Configuration {

    @XmlElement(name = "SMTP", namespace = "urn:example", required = true)
    protected SMTP smtp;

    public SMTP getSMTP() {
        return smtp;
    }

    public void setSMTP(SMTP value) {
        this.smtp = value;
    }

}

If you are looking to make this a bidirectional relationship you can leverage the @XmlInverseReference extension in EclipseLink JAXB (I'm the tech lead). For more information see:

share|improve this answer
Iam more looking for a way to identify the relation which exists. For example If i have java function i send a String as element name "SMTP", it should return back telling that "Notification" and "Configuration" are the 2 elements which uses "SMTP". Convential way is do write java program based on my xsd. Where i need to manual check & find this relation and send back. So is there way to identify this in JAXB or any other way? – ravi Dec 22 '10 at 4:26

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.