Uses of Interface
org.mule.api.exception.MessagingExceptionHandler

Packages that use MessagingExceptionHandler
org.mule The Mule implementation of the Universal Message Objects(tm) API specification. 
org.mule.api The Universal Message Object(tm) API provides a way for components to interact without needing to know about the protocol or delivery mechanisms of information passed between them 
org.mule.api.construct   
org.mule.api.exception   
org.mule.api.model Contains the interfaces for the Model and supporting objects such as the CompoenntResolver, EntryPointResolver, etc. 
org.mule.api.service   
org.mule.client   
org.mule.config.spring.factories   
org.mule.construct   
org.mule.construct.builder   
org.mule.exception   
org.mule.execution   
org.mule.model   
org.mule.module.cxf   
org.mule.processor   
org.mule.service   
org.mule.tck.functional Helper classes and interfaces used by Mule fnctional tests. 
 

Uses of MessagingExceptionHandler in org.mule
 

Methods in org.mule that return MessagingExceptionHandler
 MessagingExceptionHandler DefaultMuleContext.getDefaultExceptionStrategy()
           
 

Uses of MessagingExceptionHandler in org.mule.api
 

Methods in org.mule.api that return MessagingExceptionHandler
 MessagingExceptionHandler MuleContext.getDefaultExceptionStrategy()
           
 

Uses of MessagingExceptionHandler in org.mule.api.construct
 

Methods in org.mule.api.construct that return MessagingExceptionHandler
 MessagingExceptionHandler FlowConstruct.getExceptionListener()
           
 

Uses of MessagingExceptionHandler in org.mule.api.exception
 

Subinterfaces of MessagingExceptionHandler in org.mule.api.exception
 interface MessagingExceptionHandlerAcceptor
          MessagingExceptionHandlers that will only be executed if accepts to manage MuleEvent
 

Uses of MessagingExceptionHandler in org.mule.api.model
 

Methods in org.mule.api.model that return MessagingExceptionHandler
 MessagingExceptionHandler Model.getExceptionListener()
          The exception strategy to use by components managed by the model.
 

Methods in org.mule.api.model with parameters of type MessagingExceptionHandler
 void Model.setExceptionListener(MessagingExceptionHandler listener)
          The exception strategy to use by components managed by the model.
 

Uses of MessagingExceptionHandler in org.mule.api.service
 

Methods in org.mule.api.service that return MessagingExceptionHandler
 MessagingExceptionHandler Service.getExceptionListener()
           
 

Methods in org.mule.api.service with parameters of type MessagingExceptionHandler
 void Service.setExceptionListener(MessagingExceptionHandler exceptionListener)
           
 

Uses of MessagingExceptionHandler in org.mule.client
 

Methods in org.mule.client that return MessagingExceptionHandler
 MessagingExceptionHandler DefaultLocalMuleClient.MuleClientFlowConstruct.getExceptionListener()
           
 

Uses of MessagingExceptionHandler in org.mule.config.spring.factories
 

Fields in org.mule.config.spring.factories declared as MessagingExceptionHandler
protected  MessagingExceptionHandler TransactionalMessageProcessorsFactoryBean.exceptionListener
           
 

Methods in org.mule.config.spring.factories with parameters of type MessagingExceptionHandler
 void AbstractFlowConstructFactoryBean.setExceptionListener(MessagingExceptionHandler exceptionListener)
           
 void TransactionalMessageProcessorsFactoryBean.setExceptionListener(MessagingExceptionHandler exceptionListener)
           
 

Uses of MessagingExceptionHandler in org.mule.construct
 

Fields in org.mule.construct declared as MessagingExceptionHandler
protected  MessagingExceptionHandler AbstractFlowConstruct.exceptionListener
           
 

Methods in org.mule.construct that return MessagingExceptionHandler
 MessagingExceptionHandler AbstractFlowConstruct.getExceptionListener()
           
 

Methods in org.mule.construct with parameters of type MessagingExceptionHandler
 void AbstractFlowConstruct.setExceptionListener(MessagingExceptionHandler exceptionListener)
           
 

Uses of MessagingExceptionHandler in org.mule.construct.builder
 

Fields in org.mule.construct.builder declared as MessagingExceptionHandler
protected  MessagingExceptionHandler AbstractFlowConstructBuilder.exceptionListener
           
 

Methods in org.mule.construct.builder with parameters of type MessagingExceptionHandler
 T AbstractFlowConstructBuilder.exceptionStrategy(MessagingExceptionHandler exceptionListener)
           
 

Uses of MessagingExceptionHandler in org.mule.exception
 

Classes in org.mule.exception that implement MessagingExceptionHandler
 class AbstractMessagingExceptionStrategy
          Fire a notification, log exception, increment statistics, route the problematic message to a destination if one is configured (DLQ pattern), commit or rollback transaction if one exists, close any open streams.
 class CatchMessagingExceptionStrategy
           
 class ChoiceMessagingExceptionStrategy
          Selects which exception strategy to execute based on filtering.
 class DefaultMessagingExceptionStrategy
          This is the default exception handler for flows and services.
 class DefaultServiceExceptionStrategy
          Deprecated. use DefaultMessagingExceptionStrategy instead
 class MessagingExceptionStrategyAcceptorDelegate
          Allows to use MessagingExceptionHandler as MessagingExceptionHandlerAcceptor.
 class RollbackMessagingExceptionStrategy
           
 class TemplateMessagingExceptionStrategy
           
 

Methods in org.mule.exception that return types with arguments of type MessagingExceptionHandler
protected  List<MessagingExceptionHandler> MessagingExceptionStrategyAcceptorDelegate.getOwnedObjects()
           
 

Constructors in org.mule.exception with parameters of type MessagingExceptionHandler
MessagingExceptionStrategyAcceptorDelegate(MessagingExceptionHandler messagingExceptionHandler)
           
 

Uses of MessagingExceptionHandler in org.mule.execution
 

Methods in org.mule.execution with parameters of type MessagingExceptionHandler
static ErrorHandlingExecutionTemplate ErrorHandlingExecutionTemplate.createErrorHandlingExecutionTemplate(MuleContext muleContext, MessagingExceptionHandler messagingExceptionHandler)
          Creates a ErrorHandlingExecutionTemplate to be used as the main enthat will route any MessagingException thrown to an exception listener
static TransactionalErrorHandlingExecutionTemplate TransactionalErrorHandlingExecutionTemplate.createMainExecutionTemplate(MuleContext muleContext, MessagingExceptionHandler messagingExceptionHandler)
          Creates a TransactionalErrorHandlingExecutionTemplate to be used as first processing template in a flow using no transaction configuration
static TransactionalErrorHandlingExecutionTemplate TransactionalErrorHandlingExecutionTemplate.createMainExecutionTemplate(MuleContext muleContext, TransactionConfig transactionConfig, MessagingExceptionHandler messagingExceptionHandler)
          Creates a TransactionalErrorHandlingExecutionTemplate to be used as first processing template in a flow
static TransactionalErrorHandlingExecutionTemplate TransactionalErrorHandlingExecutionTemplate.createScopeExecutionTemplate(MuleContext muleContext, TransactionConfig transactionConfig, MessagingExceptionHandler messagingExceptionHandler)
          Creates a TransactionalErrorHandlingExecutionTemplate for inner scopes within a flow
 

Uses of MessagingExceptionHandler in org.mule.model
 

Methods in org.mule.model that return MessagingExceptionHandler
 MessagingExceptionHandler AbstractModel.getExceptionListener()
           
 

Methods in org.mule.model with parameters of type MessagingExceptionHandler
 void AbstractModel.setExceptionListener(MessagingExceptionHandler exceptionListener)
           
 

Uses of MessagingExceptionHandler in org.mule.module.cxf
 

Classes in org.mule.module.cxf that implement MessagingExceptionHandler
 class CxfComponentExceptionStrategy
          Deprecated. Currently the result is the same if no exception strategy is defined within the flow. The only difference is that when you set the CxfComponentExceptionStrategy the exception is unwrapped inside of the exception block, but the exceptionPayload doesn't change.
 

Uses of MessagingExceptionHandler in org.mule.processor
 

Fields in org.mule.processor declared as MessagingExceptionHandler
protected  MessagingExceptionHandler TransactionalInterceptingMessageProcessor.exceptionListener
           
 

Methods in org.mule.processor with parameters of type MessagingExceptionHandler
 void TransactionalInterceptingMessageProcessor.setExceptionListener(MessagingExceptionHandler exceptionListener)
           
 

Uses of MessagingExceptionHandler in org.mule.service
 

Fields in org.mule.service declared as MessagingExceptionHandler
protected  MessagingExceptionHandler AbstractService.exceptionListener
          The exception strategy used by the service.
 

Methods in org.mule.service that return MessagingExceptionHandler
 MessagingExceptionHandler AbstractService.getExceptionListener()
           
 

Methods in org.mule.service with parameters of type MessagingExceptionHandler
 void AbstractService.setExceptionListener(MessagingExceptionHandler exceptionListener)
           
 

Uses of MessagingExceptionHandler in org.mule.tck.functional
 

Classes in org.mule.tck.functional that implement MessagingExceptionHandler
 class QuietExceptionStrategy
          Restrict exceptions to debug log messages
 



Copyright © 2003-2012 MuleSoft, Inc.. All Rights Reserved.