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

Packages that use InterceptSendToEndpointDefinition
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 InterceptSendToEndpointDefinition in org.apache.camel.builder
 

Methods in org.apache.camel.builder that return InterceptSendToEndpointDefinition
 InterceptSendToEndpointDefinition RouteBuilder.interceptSendToEndpoint(String uri)
          Applies a route for an interceptor if an exchange is send to the given endpoint
 

Uses of InterceptSendToEndpointDefinition in org.apache.camel.model
 

Methods in org.apache.camel.model that return InterceptSendToEndpointDefinition
 InterceptSendToEndpointDefinition RoutesDefinition.interceptSendToEndpoint(String uri)
          Creates and adds an interceptor that is triggered when an exchange is send to the given endpoint
 InterceptSendToEndpointDefinition InterceptSendToEndpointDefinition.skipSendToOriginalEndpoint()
          Skip sending the Exchange to the original intended endpoint
 InterceptSendToEndpointDefinition InterceptSendToEndpointDefinition.when(Predicate predicate)
          Applies this interceptor only if the given predicate is true
 

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

Method parameters in org.apache.camel.model with type arguments of type InterceptSendToEndpointDefinition
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.setInterceptSendTos(List<InterceptSendToEndpointDefinition> interceptSendTos)
           
 



Apache CAMEL