if (ORB.ORBInitDebug)
dprint( "Searching registry for service context id " + scId ) ;
Enumeration enumeration = scCollection.elements() ;
while (enumeration.hasMoreElements()) {
ServiceContextData scd =
(ServiceContextData)(enumeration.nextElement()) ;
if (scd.getId() == scId) {
if (ORB.ORBInitDebug)
dprint( "Service context data found: " + scd ) ;
return scd ;
}
}
if (ORB.ORBInitDebug)
dprint( "Service context data not found" ) ;
return null ;