Package org.apache.camel.osgi

Examples of org.apache.camel.osgi.CompositeRegistry


        }
    }
   
    // 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);
    }
View Full Code Here

TOP

Related Classes of org.apache.camel.osgi.CompositeRegistry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.