* map users : JAXR has concept of 'primary contact', which is a
* special designation for one of the users, and D6.1 seems to say
* that the first UDDI user is the primary contact
*/
Contacts cts = new Contacts();
Vector cvect = new Vector();
User primaryContact = org.getPrimaryContact();
Collection users = org.getUsers();
/*
* first do primary, and then filter that out in the loop
*/
if (primaryContact != null) {
Contact ct = getContactFromJAXRUser(primaryContact);
cvect.add(ct);
}
Iterator it = users.iterator();
while (it.hasNext())
{
User u = (User) it.next();
if (u != primaryContact) {
Contact ct = getContactFromJAXRUser(u);
cvect.add(ct);
}
}
bss.setBusinessServiceVector(bvect);
cts.setContactVector(cvect);
biz.setContacts(cts);
biz.setBusinessServices(bss);
//External Links