| Package | Description |
|---|---|
| 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
|
| Modifier and Type | Method and Description |
|---|---|
protected static MethodInfoCache |
ProxyHelper.createMethodInfoCache(Endpoint endpoint) |
| Modifier and Type | Method and Description |
|---|---|
static <T> T |
ProxyHelper.createProxy(Endpoint endpoint,
boolean binding,
ClassLoader cl,
Class<T>[] interfaceClasses,
MethodInfoCache methodCache)
Creates a Proxy which sends the exchange to the endpoint.
|
static <T> T |
ProxyHelper.createProxy(Endpoint endpoint,
boolean binding,
ClassLoader cl,
Class<T> interfaceClass,
MethodInfoCache methodCache)
Creates a Proxy which sends the exchange to the endpoint.
|
static <T> T |
ProxyHelper.createProxy(Endpoint endpoint,
ClassLoader cl,
Class<T>[] interfaceClasses,
MethodInfoCache methodCache)
Deprecated.
use the same method name with binding as parameter
|
static <T> T |
ProxyHelper.createProxy(Endpoint endpoint,
ClassLoader cl,
Class<T> interfaceClass,
MethodInfoCache methodCache)
Deprecated.
use the same method name with binding as parameter
|
static <T> T |
ProxyHelper.createProxyObject(Endpoint endpoint,
boolean binding,
Producer producer,
ClassLoader classLoader,
Class<T>[] interfaces,
MethodInfoCache methodCache)
Creates a Proxy which sends the exchange to the endpoint.
|
static <T> T |
ProxyHelper.createProxyObject(Endpoint endpoint,
Producer producer,
ClassLoader classLoader,
Class<T>[] interfaces,
MethodInfoCache methodCache)
Deprecated.
use the same method name with binding as parameter
|
| Constructor and Description |
|---|
CamelInvocationHandler(Endpoint endpoint,
boolean binding,
Producer producer,
MethodInfoCache methodInfoCache) |
CamelInvocationHandler(Endpoint endpoint,
Producer producer,
MethodInfoCache methodInfoCache)
Deprecated.
|
Apache Camel