return null;
}
// Javadoc inherited.
public Object addingService(ServiceReference reference) {
ServiceHandler handler = getServiceHandler(reference);
if (handler == null) {
// Not one that we wanted, probably an error somewhere but
// just ignore it.
return null;
}
handler.serviceRegistered(reference);
// Increment the use count on the service so that it doesn't go
// away. Otherwise, delayed declarative services components
// could be deactivated.
bundleContext.getService(reference);