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

Packages that use Injector
org.apache.camel The JAXB POJOs for the XML Configuration of the routing rules. 
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.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 and useful for Camel component developers 
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
 

Methods in org.apache.camel.impl that return Injector
protected  Injector DefaultCamelContext.createInjector()
          Lazily create a default implementation
 Injector ReportingTypeConverterRegistry.getInjector()
           
 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 ReportingTypeConverterRegistry.setInjector(Injector injector)
           
 void DefaultCamelContext.setInjector(Injector injector)
           
 

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

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

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

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

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 convertions.
 

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