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

Packages that use Injector
org.apache.camel The core Camel API. 
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.impl.converter Default implementation classes the Type Conversion Strategies 
org.apache.camel.impl.osgi Camel OSGi Activator. 
org.apache.camel.spi Service Provider Interfaces used internally by the Camel runtime which are plugin strategies. 
org.apache.camel.util Utility classes used by the core of Camel. 
org.apache.camel.util.jndi A simple JNDI context which can be used with the JndiRegistry 
 

Uses of Injector in org.apache.camel
 

Methods in org.apache.camel that return Injector
 Injector CamelContext.getInjector()
          Returns the injector used to instantiate objects by type
 

Uses of Injector in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement Injector
 class DefaultInjector
          A default implementation of Injector which just uses reflection to instantiate new objects using their zero argument constructor, and then performing bean post processing using DefaultCamelBeanPostProcessor.
 

Methods in org.apache.camel.impl that return Injector
protected  Injector DefaultCamelContext.createInjector()
          Lazily create a default implementation
 Injector DefaultCamelContext.getInjector()
           
 

Methods in org.apache.camel.impl with parameters of type Injector
<T> List<T>
DefaultFactoryFinder.newInstances(String key, Injector injector, Class<T> type)
           
 void DefaultCamelContext.setInjector(Injector injector)
           
 

Uses of Injector in org.apache.camel.impl.converter
 

Fields in org.apache.camel.impl.converter declared as Injector
protected  Injector BaseTypeConverterRegistry.injector
           
 

Methods in org.apache.camel.impl.converter that return Injector
 Injector BaseTypeConverterRegistry.getInjector()
           
 

Methods in org.apache.camel.impl.converter with parameters of type Injector
 void BaseTypeConverterRegistry.setInjector(Injector injector)
           
 

Constructors in org.apache.camel.impl.converter with parameters of type Injector
BaseTypeConverterRegistry(PackageScanClassResolver resolver, Injector injector, FactoryFinder factoryFinder)
           
DefaultTypeConverter(PackageScanClassResolver resolver, Injector injector, FactoryFinder factoryFinder)
           
LazyLoadingTypeConverter(PackageScanClassResolver resolver, Injector injector, FactoryFinder factoryFinder)
          Deprecated.  
 

Uses of Injector in org.apache.camel.impl.osgi
 

Methods in org.apache.camel.impl.osgi with parameters of type Injector
protected  T Activator.BaseResolver.createInstance(String name, URL url, Injector injector)
           
 

Uses of Injector in org.apache.camel.spi
 

Methods in org.apache.camel.spi that return Injector
 Injector TypeConverterRegistry.getInjector()
          Gets the injector
 

Methods in org.apache.camel.spi with parameters of type Injector
<T> List<T>
FactoryFinder.newInstances(String key, Injector injector, Class<T> type)
          Creates a new class instance using the key to lookup
 void TypeConverterRegistry.setInjector(Injector injector)
          Sets the injector to be used for creating new instances during type conversions.
 

Uses of Injector in org.apache.camel.util
 

Classes in org.apache.camel.util that implement Injector
 class ReflectionInjector
          A simple implementation of Injector which just uses reflection to instantiate new objects using their zero argument constructor.
 

Uses of Injector in org.apache.camel.util.jndi
 

Fields in org.apache.camel.util.jndi declared as Injector
protected static Injector JndiContext.INJETOR
           
 



Apache Camel