Uses of Class
org.apache.camel.model.InterceptFromDefinition

Packages that use InterceptFromDefinition
org.apache.camel.builder The Camel Domain Specific Language for creating Routes, Predicates, Expressions and Error Handlers
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
 

Uses of InterceptFromDefinition in org.apache.camel.builder
 

Methods in org.apache.camel.builder that return InterceptFromDefinition
 InterceptFromDefinition RouteBuilder.interceptFrom()
          Adds a route for an interceptor that intercepts incoming messages on any inputs in this route
 InterceptFromDefinition RouteBuilder.interceptFrom(String uri)
          Adds a route for an interceptor that intercepts incoming messages on the given endpoint.
 

Uses of InterceptFromDefinition in org.apache.camel.model
 

Methods in org.apache.camel.model that return InterceptFromDefinition
 InterceptFromDefinition RoutesDefinition.interceptFrom()
          Creates and adds an interceptor that is triggered when an exchange is received as input to any routes (eg from all the from)
 InterceptFromDefinition RoutesDefinition.interceptFrom(String uri)
          Creates and adds an interceptor that is triggered when an exchange is received as input to the route defined with the given endpoint (eg from the from)
 

Methods in org.apache.camel.model that return types with arguments of type InterceptFromDefinition
 List<InterceptFromDefinition> RoutesDefinition.getInterceptFroms()
           
 

Method parameters in org.apache.camel.model with type arguments of type InterceptFromDefinition
static void RouteDefinitionHelper.prepareRoute(ModelCamelContext context, RouteDefinition route, List<OnExceptionDefinition> onExceptions, List<InterceptDefinition> intercepts, List<InterceptFromDefinition> interceptFromDefinitions, List<InterceptSendToEndpointDefinition> interceptSendToEndpointDefinitions, List<OnCompletionDefinition> onCompletions)
          Prepares the route which supports context scoped features such as onException, interceptors and onCompletions

This method does not mark the route as prepared afterwards.

 void RoutesDefinition.setInterceptFroms(List<InterceptFromDefinition> interceptFroms)
           
 



Apache CAMEL