return null;
}
ImpalaOsgiApplicationContext startContext(BundleContext bundleContext, String[] locations) {
OsgiContextStarter contextStarter = newContextStarter();
contextStarter.setBundleContext(bundleContext);
ApplicationContext context = contextStarter.startContext(Arrays.asList(locations));
ImpalaOsgiApplicationContext applicationContext = ObjectUtils.cast(context, ImpalaOsgiApplicationContext.class);
return applicationContext;
}