final HealthCheck healthCheck = (HealthCheck) bundleContext.getService(metadata.getServiceReference());
try {
if (healthCheck != null) {
resultFromHealthCheck = healthCheck.execute();
} else {
throw new IllegalStateException("Service for " + metadata + " is gone");
}
} catch (final Exception e) {