Uses of Interface
org.apache.camel.ErrorHandlerFactory

Packages that use ErrorHandlerFactory
org.apache.camel The core Camel API. 
org.apache.camel.builder The Camel Domain Specific Language for creating Routes, Predicates, Expressions and Error Handlers
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.management Camel management 
org.apache.camel.management.mbean Camel management JMX MBeans 
org.apache.camel.model The JAXB POJOs for the XML Configuration of the routing rules. 
org.apache.camel.spi Service Provider Interfaces used internally by the Camel runtime which are plugin strategies. 
org.apache.camel.support Base classes that help to implement the camel API and are expected to be extended by the user 
 

Uses of ErrorHandlerFactory in org.apache.camel
 

Methods in org.apache.camel with parameters of type ErrorHandlerFactory
 void CamelContext.setErrorHandlerBuilder(ErrorHandlerFactory errorHandlerBuilder)
          Sets the default error handler builder which is inherited by the routes
 

Uses of ErrorHandlerFactory in org.apache.camel.builder
 

Subinterfaces of ErrorHandlerFactory in org.apache.camel.builder
 interface ErrorHandlerBuilder
          A builder of a Error Handler
 

Classes in org.apache.camel.builder that implement ErrorHandlerFactory
 class DeadLetterChannelBuilder
          A builder of a Dead Letter Channel
 class DefaultErrorHandlerBuilder
          The default error handler builder.
 class ErrorHandlerBuilderRef
          Represents a proxy to an error handler builder which is resolved by named reference
 class ErrorHandlerBuilderSupport
          Base class for builders of error handling.
 class LoggingErrorHandlerBuilder
          Uses the Logger as an error handler, will log at ERROR level by default.
 class NoErrorHandlerBuilder
          A builder to disable the use of an error handler so that any exceptions are thrown.
 

Methods in org.apache.camel.builder that return ErrorHandlerFactory
protected static ErrorHandlerFactory ErrorHandlerBuilderRef.lookupErrorHandlerBuilder(ModelCamelContext camelContext)
           
static ErrorHandlerFactory ErrorHandlerBuilderRef.lookupErrorHandlerBuilder(RouteContext routeContext, String ref)
          Lookup the error handler by the given ref
 

Uses of ErrorHandlerFactory in org.apache.camel.impl
 

Methods in org.apache.camel.impl with parameters of type ErrorHandlerFactory
 void DefaultCamelContext.setErrorHandlerBuilder(ErrorHandlerFactory errorHandlerBuilder)
           
 

Uses of ErrorHandlerFactory in org.apache.camel.management
 

Methods in org.apache.camel.management with parameters of type ErrorHandlerFactory
 Object DefaultManagementObjectStrategy.getManagedObjectForErrorHandler(CamelContext context, RouteContext routeContext, Processor errorHandler, ErrorHandlerFactory errorHandlerBuilder)
           
 ObjectName DefaultManagementNamingStrategy.getObjectNameForErrorHandler(RouteContext routeContext, Processor errorHandler, ErrorHandlerFactory builder)
           
 void DefaultManagementLifecycleStrategy.onErrorHandlerAdd(RouteContext routeContext, Processor errorHandler, ErrorHandlerFactory errorHandlerBuilder)
           
 void DefaultManagementLifecycleStrategy.onErrorHandlerRemove(RouteContext routeContext, Processor errorHandler, ErrorHandlerFactory errorHandlerBuilder)
           
 

Uses of ErrorHandlerFactory in org.apache.camel.management.mbean
 

Methods in org.apache.camel.management.mbean that return ErrorHandlerFactory
 ErrorHandlerFactory ManagedErrorHandler.getErrorHandlerBuilder()
           
 

Constructors in org.apache.camel.management.mbean with parameters of type ErrorHandlerFactory
ManagedErrorHandler(RouteContext routeContext, Processor errorHandler, ErrorHandlerFactory builder)
           
 

Uses of ErrorHandlerFactory in org.apache.camel.model
 

Methods in org.apache.camel.model that return ErrorHandlerFactory
 ErrorHandlerFactory RouteDefinition.getErrorHandlerBuilder()
           
 ErrorHandlerFactory RoutesDefinition.getErrorHandlerBuilder()
           
 

Methods in org.apache.camel.model with parameters of type ErrorHandlerFactory
 RouteDefinition RouteDefinition.errorHandler(ErrorHandlerFactory errorHandlerBuilder)
          Installs the given error handler builder.
 void RouteDefinition.setErrorHandlerBuilder(ErrorHandlerFactory errorHandlerBuilder)
          Sets the error handler to use with processors created by this builder
 void RoutesDefinition.setErrorHandlerBuilder(ErrorHandlerFactory errorHandlerBuilder)
           
 void RouteDefinition.setErrorHandlerBuilderIfNull(ErrorHandlerFactory errorHandlerBuilder)
          Sets the error handler if one is not already set
 

Uses of ErrorHandlerFactory in org.apache.camel.spi
 

Methods in org.apache.camel.spi with parameters of type ErrorHandlerFactory
 Object ManagementObjectStrategy.getManagedObjectForErrorHandler(CamelContext context, RouteContext routeContext, Processor errorHandler, ErrorHandlerFactory errorHandlerBuilder)
           
 ObjectName ManagementNamingStrategy.getObjectNameForErrorHandler(RouteContext routeContext, Processor errorHandler, ErrorHandlerFactory builder)
           
 void LifecycleStrategy.onErrorHandlerAdd(RouteContext routeContext, Processor errorHandler, ErrorHandlerFactory errorHandlerBuilder)
          Notification on adding error handler.
 void LifecycleStrategy.onErrorHandlerRemove(RouteContext routeContext, Processor errorHandler, ErrorHandlerFactory errorHandlerBuilder)
          Notification on removing error handler.
 

Uses of ErrorHandlerFactory in org.apache.camel.support
 

Methods in org.apache.camel.support with parameters of type ErrorHandlerFactory
 void LifecycleStrategySupport.onErrorHandlerAdd(RouteContext routeContext, Processor errorHandler, ErrorHandlerFactory errorHandlerBuilder)
           
 void LifecycleStrategySupport.onErrorHandlerRemove(RouteContext routeContext, Processor errorHandler, ErrorHandlerFactory errorHandlerBuilder)
           
 



Apache Camel