componentContext = ((RuntimeComponent)component).getComponentContext();
}
ServiceReference<B> serviceReference;
if (serviceName != null) {
serviceReference = componentContext.createSelfReference(businessInterface, serviceName);
} else {
serviceReference = componentContext.createSelfReference(businessInterface);
}
return serviceReference;