Uses of Interface
org.apache.camel.spi.Registry

Packages that use Registry
org.apache.camel The core Camel API. 
org.apache.camel.component.bean The Bean Component which will look up the bean name in the Spring ApplicationContext and use that to dispatch messages to a POJO 
org.apache.camel.impl Default implementation classes for Camel Core 
 

Uses of Registry in org.apache.camel
 

Methods in org.apache.camel that return Registry
 Registry CamelContext.getRegistry()
          Returns the registry used to lookup components by name and type such as the Spring ApplicationContext, JNDI or the OSGi Service Registry
 

Uses of Registry in org.apache.camel.component.bean
 

Methods in org.apache.camel.component.bean that return Registry
 Registry RegistryBean.getRegistry()
           
 

Constructors in org.apache.camel.component.bean with parameters of type Registry
RegistryBean(Registry registry, CamelContext context, String name)
           
 

Uses of Registry in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement Registry
 class CompositeRegistry
          This registry will look up the object with the sequence of the registry list until it finds the Object.
 class JndiRegistry
          A Registry implementation which looks up the objects in JNDI
 class PropertyPlaceholderDelegateRegistry
          A Registry which delegates to the real registry.
 class SimpleRegistry
          A Map-based registry.
 

Methods in org.apache.camel.impl that return Registry
protected  Registry DefaultCamelContext.createRegistry()
          Lazily create a default implementation
 Registry PropertyPlaceholderDelegateRegistry.getRegistry()
           
 Registry DefaultCamelContext.getRegistry()
           
 

Methods in org.apache.camel.impl with parameters of type Registry
 void CompositeRegistry.addRegistry(Registry registry)
           
 void DefaultCamelContext.setRegistry(Registry registry)
           
 

Constructors in org.apache.camel.impl with parameters of type Registry
DefaultCamelContext(Registry registry)
          Creates the CamelContext using the given registry
PropertyPlaceholderDelegateRegistry(CamelContext context, Registry delegate)
           
 

Constructor parameters in org.apache.camel.impl with type arguments of type Registry
CompositeRegistry(List<Registry> registries)
           
 



Apache CAMEL