@Inject
protected BundleContext bundleContext;
protected void startOSGiCamel() throws Exception {
CamelContextFactory factory = new CamelContextFactory();
factory.setBundleContext(bundleContext);
LOG.info("Get the bundleContext is " + bundleContext);
camel = factory.createContext();
ReportIncidentRoutes routes = new ReportIncidentRoutes();
routes.setUsingServletTransport(false);
camel.addRoutes(routes);
camel.start();
}