Title: nested object

Hi,

I am currently in a situation using mapping.xml :

Class A{
        B bbb;
}
Class B{
        C ccc;
}

Class C{
        String name;
}

expected XML

<A>
        <C name = "abcd"/>
</A>

Basically what I am trying to do is skip Class B and directly get the value of C under A.

Is  this possible in Castor? If yes then how?

Thanks in advance.
anand

Reply via email to