protected void activate(ComponentContext context) {
try {
BundleContext bundleContext = context.getBundleContext();
bundleContext.registerService(LoadBalancerConfigurationService.class.getName(),
new LoadBalancerConfigurationServiceImpl(), null);
log.debug("******* Load Balancer Configuration Service bundle is activated ******* ");
} catch (Exception e) {
log.error("******* Load Balancer Configuration Service bundle is failed to activate ****", e);
}