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
 

Fields in org.apache.camel.builder declared as ExceptionPolicyStrategy
protected  ExceptionPolicyStrategy DefaultErrorHandlerBuilder.exceptionPolicyStrategy
           
 

Methods in org.apache.camel.builder that return ExceptionPolicyStrategy
 ExceptionPolicyStrategy ErrorHandlerBuilderSupport.getExceptionPolicyStrategy()
           
 ExceptionPolicyStrategy ErrorHandlerBuilder.getExceptionPolicyStrategy()
          Gets the exception policy strategy
 ExceptionPolicyStrategy DefaultErrorHandlerBuilder.getExceptionPolicyStrategy()
          Sets the exception policy strategy to use for resolving the OnExceptionDefinition to use for a given thrown exception
 

Methods in org.apache.camel.builder with parameters of type ExceptionPolicyStrategy
 ErrorHandlerBuilderSupport ErrorHandlerBuilderSupport.exceptionPolicyStrategy(ExceptionPolicyStrategy exceptionPolicyStrategy)
          Sets the exception policy to use
 DefaultErrorHandlerBuilder DefaultErrorHandlerBuilder.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
 void DefaultErrorHandlerBuilder.setExceptionPolicyStrategy(ExceptionPolicyStrategy exceptionPolicyStrategy)
           
 

Uses of ExceptionPolicyStrategy in org.apache.camel.processor
 

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(Processor output, Logger logger, Processor redeliveryProcessor, RedeliveryPolicy redeliveryPolicy, Predicate handledPolicy, ExceptionPolicyStrategy exceptionPolicyStrategy, Processor deadLetter, String deadLetterUri, boolean useOriginalBodyPolicy)
          Creates the dead letter channel.
DefaultErrorHandler(Processor output, Logger logger, Processor redeliveryProcessor, RedeliveryPolicy redeliveryPolicy, Predicate handledPolicy, ExceptionPolicyStrategy exceptionPolicyStrategy)
          Creates the default 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