org.apache.camel.spring.spi
Class ApplicationContextRegistry
java.lang.Object
org.apache.camel.spring.spi.ApplicationContextRegistry
- All Implemented Interfaces:
- org.apache.camel.spi.Registry
public class ApplicationContextRegistry
- extends Object
- implements org.apache.camel.spi.Registry
A Registry
implementation which looks up the objects in the Spring
ApplicationContext
- Version:
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ApplicationContextRegistry
public ApplicationContextRegistry(org.springframework.context.ApplicationContext applicationContext)
lookupByNameAndType
public <T> T lookupByNameAndType(String name,
Class<T> type)
- Specified by:
lookupByNameAndType
in interface org.apache.camel.spi.Registry
lookupByName
public Object lookupByName(String name)
- Specified by:
lookupByName
in interface org.apache.camel.spi.Registry
findByType
public <T> Set<T> findByType(Class<T> type)
- Specified by:
findByType
in interface org.apache.camel.spi.Registry
findByTypeWithName
public <T> Map<String,T> findByTypeWithName(Class<T> type)
- Specified by:
findByTypeWithName
in interface org.apache.camel.spi.Registry
lookup
public Object lookup(String name)
- Specified by:
lookup
in interface org.apache.camel.spi.Registry
lookup
public <T> T lookup(String name,
Class<T> type)
- Specified by:
lookup
in interface org.apache.camel.spi.Registry
lookupByType
public <T> Map<String,T> lookupByType(Class<T> type)
- Specified by:
lookupByType
in interface org.apache.camel.spi.Registry
Apache Camel