len = v.size();
col = new ArrayList(len);
}
for (int i = 0; i < len; i++)
{
PublisherAssertion pas = (PublisherAssertion) v.elementAt(i);
String sourceKey = pas.getFromKey();
String targetKey = pas.getToKey();
Collection orgcol = new ArrayList();
orgcol.add(new KeyImpl(sourceKey));
orgcol.add(new KeyImpl(targetKey));
BulkResponse bl = getRegistryObjects(orgcol, LifeCycleManager.ORGANIZATION);
Association asso = ScoutUddiJaxrHelper.getAssociation(bl.getCollection(),
registryService.getBusinessLifeCycleManager());
KeyedReference keyr = pas.getKeyedReference();
Concept c = new ConceptImpl(getRegistryService().getBusinessLifeCycleManager());
c.setName(new InternationalStringImpl(keyr.getKeyName()));
c.setKey( new KeyImpl(keyr.getTModelKey()) );
c.setValue(keyr.getKeyValue());
asso.setAssociationType(c);