Uses of Interface
org.apache.camel.processor.exceptionpolicy.ExceptionPolicyStrategy

Packages that use ExceptionPolicyStrategy
org.apache.camel.builder The Camel Domain Specific Language for creating Routes, Predicates, Expressions and Error Handlers
org.apache.camel.processor A collection of Processor implementations which are used to implement the Enterprise Integration Patterns 
org.apache.camel.processor.exceptionpolicy Exception policy startegies for Dead Letter Channel pattern. 
 

Uses of ExceptionPolicyStrategy in org.apache.camel.builder
 

Methods in org.apache.camel.builder that return ExceptionPolicyStrategy
 ExceptionPolicyStrategy ErrorHandlerBuilderSupport.getExceptionPolicyStrategy()
           
 ExceptionPolicyStrategy ErrorHandlerBuilder.getExceptionPolicyStrategy()
          Gets the exception policy strategy
 

Methods in org.apache.camel.builder with parameters of type ExceptionPolicyStrategy
 ErrorHandlerBuilderSupport ErrorHandlerBuilderSupport.exceptionPolicyStrategy(ExceptionPolicyStrategy exceptionPolicyStrategy)
          Sets the exception policy to use
 void ErrorHandlerBuilderSupport.setExceptionPolicyStrategy(ExceptionPolicyStrategy exceptionPolicyStrategy)
           
 void ErrorHandlerBuilder.setExceptionPolicyStrategy(ExceptionPolicyStrategy exceptionPolicyStrategy)
          Sets the exception policy strategy to use for resolving the OnExceptionDefinition to use for a given thrown exception
 

Uses of ExceptionPolicyStrategy in org.apache.camel.processor
 

Fields in org.apache.camel.processor declared as ExceptionPolicyStrategy
protected  ExceptionPolicyStrategy ErrorHandlerSupport.exceptionPolicy
           
 

Methods in org.apache.camel.processor that return ExceptionPolicyStrategy
static ExceptionPolicyStrategy ErrorHandlerSupport.createDefaultExceptionPolicyStrategy()
          Creates the default exception policy strategy to use.
 

Methods in org.apache.camel.processor with parameters of type ExceptionPolicyStrategy
 void ErrorHandlerSupport.setExceptionPolicy(ExceptionPolicyStrategy exceptionPolicy)
          Sets the strategy to use for resolving the OnExceptionDefinition to use for handling thrown exceptions.
 

Constructors in org.apache.camel.processor with parameters of type ExceptionPolicyStrategy
DeadLetterChannel(CamelContext camelContext, Processor output, CamelLogger logger, Processor redeliveryProcessor, RedeliveryPolicy redeliveryPolicy, ExceptionPolicyStrategy exceptionPolicyStrategy, Processor deadLetter, String deadLetterUri, boolean useOriginalBodyPolicy, Predicate retryWhile, ScheduledExecutorService executorService)
          Creates the dead letter channel.
DefaultErrorHandler(CamelContext camelContext, Processor output, CamelLogger logger, Processor redeliveryProcessor, RedeliveryPolicy redeliveryPolicy, ExceptionPolicyStrategy exceptionPolicyStrategy, Predicate retryWhile, ScheduledExecutorService executorService)
          Creates the default error handler.
LoggingErrorHandler(CamelContext camelContext, Processor output, CamelLogger logger, RedeliveryPolicy redeliveryPolicy, ExceptionPolicyStrategy exceptionPolicyStrategy)
          Creates the logging error handler.
 

Uses of ExceptionPolicyStrategy in org.apache.camel.processor.exceptionpolicy
 

Classes in org.apache.camel.processor.exceptionpolicy that implement ExceptionPolicyStrategy
 class DefaultExceptionPolicyStrategy
          The default strategy used in Camel to resolve the OnExceptionDefinition that should handle the thrown exception.
 



Apache Camel