*/
protected final MutableBeanLocator findLocator( final BundleContext context )
{
@SuppressWarnings( "boxing" )
final Long extenderId = context.getBundle().getBundleId();
MutableBeanLocator locator = locators.get( extenderId );
if ( null == locator )
{
locators.put( extenderId, locator = createLocator( context ) );
}
return locator;