}
}
// Add the JndiRegistry to the camel context
protected void updateRegistry(DefaultCamelContext camelContext) {
CompositeRegistry compositeRegistry = new CompositeRegistry();
compositeRegistry.addRegistry(new JndiRegistry(getJndiContext()));
compositeRegistry.addRegistry(camelContext.getRegistry());
camelContext.setRegistry(compositeRegistry);
}