Hi,
I have the following situation:

class Application {

private Collection people;

}

class Person {

private String id;
private Collection assets;
}

class Asset {
...
}

My input xml has the following structure:

<Application>
<Asset personId="xxx" />
<Asset personId="yyy" />
<Person id="xxx" />
<Person id="yyy" />
</Application>

How do I go about unmarshalling the Asset elements to
the correct Person instance (based on the personId
specified in the element)?

thanks

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
jibx-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jibx-users

Reply via email to