| Package | Description |
|---|---|
| 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
|
| Modifier and Type | Method and Description |
|---|---|
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
|
| Modifier and Type | Method and Description |
|---|---|
Registry |
RegistryBean.getRegistry() |
| Constructor and Description |
|---|
RegistryBean(Registry registry,
CamelContext context,
String name) |
| Modifier and Type | Class and Description |
|---|---|
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. |
| Modifier and Type | Method and Description |
|---|---|
protected Registry |
DefaultCamelContext.createRegistry()
Lazily create a default implementation
|
Registry |
DefaultCamelContext.getRegistry() |
Registry |
PropertyPlaceholderDelegateRegistry.getRegistry() |
| Modifier and Type | Method and Description |
|---|---|
void |
CompositeRegistry.addRegistry(Registry registry) |
void |
DefaultCamelContext.setRegistry(Registry registry) |
| Constructor and Description |
|---|
DefaultCamelContext(Registry registry)
Creates the
CamelContext using the given registry |
PropertyPlaceholderDelegateRegistry(CamelContext context,
Registry delegate) |
| Constructor and Description |
|---|
CompositeRegistry(List<Registry> registries) |
Apache Camel