public void instantiationComplete(String instanceName,
String componentIDHandle)
throws gov.cca.CCAException {
logger.finest("called for instanceName: " + instanceName);
XCATComponentIDClientImpl cid =
(XCATComponentIDClientImpl) namedComponentIDs.get(instanceName);
if (cid == null)
throw new NonstandardException("Instance name : " + instanceName +
" is unknown");
synchronized(cid) {
// set the GSH for the ComponentIDClient
cid.setSerialization(componentIDHandle);
// notify thread waiting to receive this ComponentID
cid.notify();
}
}