I have several different fuse bundles, some with camel routes defined in their own camel contexts.
I would like to access all the camel contexts from a single bundle.
Something like:
fuse.getCamelContext("someOtherCamelContextId")
or maybe:
fuse.getBundleContext("someOtherBundleName").getCamelContext("someOtherCamelContextId")
I am aware of how to implement a CamelContextAware
class and inject it using spring, however, that only gives access to the local camel context.
Fuse does record service ids for the camel contexts - is there a way to look them up?
Or does Fuse only allow access to a bundles services to that bundle??
thanks!