Package | Description |
---|---|
org.apache.camel |
The core Camel API.
|
org.apache.camel.spi |
Service Provider Interfaces used by the Camel runtime which are plugin strategies.
|
Modifier and Type | Method and Description |
---|---|
List<InterceptStrategy> |
Channel.getInterceptStrategies()
Gets the list of
InterceptStrategy registered to this Channel. |
List<InterceptStrategy> |
CamelContext.getInterceptStrategies()
Gets the interceptor strategies
|
Modifier and Type | Method and Description |
---|---|
void |
Channel.addInterceptStrategy(InterceptStrategy strategy)
|
void |
CamelContext.addInterceptStrategy(InterceptStrategy interceptStrategy)
Adds the given interceptor strategy
|
Modifier and Type | Method and Description |
---|---|
void |
Channel.addInterceptStrategies(List<InterceptStrategy> strategy)
|
Modifier and Type | Method and Description |
---|---|
List<InterceptStrategy> |
RouteContext.getInterceptStrategies()
This method retrieves the InterceptStrategy instances this route context.
|
Modifier and Type | Method and Description |
---|---|
void |
RouteContext.addInterceptStrategy(InterceptStrategy interceptStrategy)
Adds a InterceptStrategy to this route context
|
Modifier and Type | Method and Description |
---|---|
void |
RouteContext.setInterceptStrategies(List<InterceptStrategy> interceptStrategies)
This method sets the InterceptStrategy instances on this route context.
|
Apache Camel