Uses of Interface
org.mule.api.processor.MessageProcessor

Packages that use MessageProcessor
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.cache   
org.mule.api.component   
org.mule.api.construct   
org.mule.api.endpoint Endpoint interfaces. 
org.mule.api.interceptor   
org.mule.api.processor   
org.mule.api.routing Interfaces that define inbound and outbound routing API. 
org.mule.api.service   
org.mule.api.source   
org.mule.api.transformer Contains the interfaces for transformers and exceptions for the Transformer API. 
org.mule.api.transport Contains the interfaces that comprise a provider implementation. 
org.mule.component   
org.mule.component.simple A collection of simple mule components that can be useful to simplify configuration while testing. 
org.mule.config.dsl.routers   
org.mule.config.i18n Internationalisation support for Mule messages and exception messages. 
org.mule.construct   
org.mule.construct.builder   
org.mule.construct.processor   
org.mule.context.notification Internal server notification types fired via the MuleManager. 
org.mule.el   
org.mule.endpoint Implemtation of Mule endpoint uris. 
org.mule.endpoint.inbound   
org.mule.endpoint.outbound   
org.mule.enricher   
org.mule.exception   
org.mule.execution   
org.mule.expression   
org.mule.expression.transformers   
org.mule.interceptor   
org.mule.lifecycle.processor   
org.mule.model.seda   
org.mule.processor   
org.mule.processor.chain   
org.mule.processor.strategy   
org.mule.routing Defines the core routing patterns supported by mule. 
org.mule.routing.correlation   
org.mule.routing.outbound Outbound router implementation as described in the Enterprise Integration Patterns book. 
org.mule.routing.requestreply   
org.mule.service   
org.mule.service.processor   
org.mule.source   
org.mule.transformer Provides the default transformer base implementations for Mule including compression and encryption support. 
org.mule.transformer.codec Transformers for Base64, UC and UU encoding/decoding. 
org.mule.transformer.compression Transformers for compressing and uncompressing message payloads. 
org.mule.transformer.encryption Transformers for encrypting and decrypting message payloads. 
org.mule.transformer.simple Basic transformer implementations. 
org.mule.transport Contains Abstract classes providing common functionality for all Mule providers. 
org.mule.transport.polling   
org.mule.util Common helper classes for reading/writing files setting bean properties and SPI helpers. 
 

Uses of MessageProcessor in org.mule.api
 

Methods in org.mule.api that return MessageProcessor
 MessageProcessor MessagingException.getFailingMessageProcessor()
           
 

Constructors in org.mule.api with parameters of type MessageProcessor
MessagingException(Message message, MuleEvent event, MessageProcessor failingMessageProcessor)
           
MessagingException(Message message, MuleEvent event, Throwable cause, MessageProcessor failingMessageProcessor)
           
MessagingException(MuleEvent event, Throwable cause, MessageProcessor failingMessageProcessor)
           
 

Uses of MessageProcessor in org.mule.api.cache
 

Methods in org.mule.api.cache with parameters of type MessageProcessor
 MuleEvent CachingStrategy.process(MuleEvent request, MessageProcessor messageProcessor)
          Processes a MuleEvent using a caching schema.
 

Uses of MessageProcessor in org.mule.api.component
 

Subinterfaces of MessageProcessor in org.mule.api.component
 interface Component
          A Component component processes a MuleEvent by invoking the component instance that has been configured, optionally returning a result.
 interface InterfaceBinding
           
 interface JavaComponent
          JavaComponent is a Java Component implementation used to invoke Java component implementations.
 

Uses of MessageProcessor in org.mule.api.construct
 

Methods in org.mule.api.construct that return types with arguments of type MessageProcessor
 List<MessageProcessor> Pipeline.getMessageProcessors()
           
 

Methods in org.mule.api.construct with parameters of type MessageProcessor
 String Pipeline.getProcessorPath(MessageProcessor processor)
           
 

Method parameters in org.mule.api.construct with type arguments of type MessageProcessor
 void Pipeline.setMessageProcessors(List<MessageProcessor> messageProcessors)
           
 

Uses of MessageProcessor in org.mule.api.endpoint
 

Subinterfaces of MessageProcessor in org.mule.api.endpoint
 interface OutboundEndpoint
           
 

Methods in org.mule.api.endpoint that return MessageProcessor
 MessageProcessor EndpointMessageProcessorChainFactory.createInboundMessageProcessorChain(InboundEndpoint endpoint, FlowConstruct flowConstruct, MessageProcessor target)
           
 MessageProcessor EndpointMessageProcessorChainFactory.createOutboundMessageProcessorChain(OutboundEndpoint endpoint, FlowConstruct flowConstruct, MessageProcessor target)
           
 

Methods in org.mule.api.endpoint that return types with arguments of type MessageProcessor
 List<MessageProcessor> ImmutableEndpoint.getMessageProcessors()
           
 List<MessageProcessor> ImmutableEndpoint.getResponseMessageProcessors()
           
 

Methods in org.mule.api.endpoint with parameters of type MessageProcessor
 void EndpointBuilder.addMessageProcessor(MessageProcessor messageProcessor)
           
 void EndpointBuilder.addResponseMessageProcessor(MessageProcessor responseMessageProcessor)
           
 MessageProcessor EndpointMessageProcessorChainFactory.createInboundMessageProcessorChain(InboundEndpoint endpoint, FlowConstruct flowConstruct, MessageProcessor target)
           
 MessageProcessor EndpointMessageProcessorChainFactory.createOutboundMessageProcessorChain(OutboundEndpoint endpoint, FlowConstruct flowConstruct, MessageProcessor target)
           
 

Method parameters in org.mule.api.endpoint with type arguments of type MessageProcessor
 void EndpointBuilder.setMessageProcessors(List<MessageProcessor> messageProcessors)
           
 void EndpointBuilder.setResponseMessageProcessors(List<MessageProcessor> responseMessageProcessors)
           
 

Uses of MessageProcessor in org.mule.api.interceptor
 

Subinterfaces of MessageProcessor in org.mule.api.interceptor
 interface Interceptor
          Interceptor is based on a similar concept of servlet filters and works much the same way.
 

Uses of MessageProcessor in org.mule.api.processor
 

Subinterfaces of MessageProcessor in org.mule.api.processor
 interface InterceptingMessageProcessor
           Processes MuleEvent's intercepting another listener MessageProcessor.
 interface MessageProcessorChain
           
 interface MessageRouter
          A MessageProcessor that routes messages to zero or more destination message processors.
 interface RequestReplyReplierMessageProcessor
           Processes a MuleEvent's by invoking the next MessageProcessor and then rather than returning the result to this processors MessageSource sending it via a seperate reply MessageProcessor,
 

Classes in org.mule.api.processor that implement MessageProcessor
 class LoggerMessageProcessor
          MessageProcessor implementation that logs the current element of a value evaluated from it using an expression evaluator.
 

Methods in org.mule.api.processor that return MessageProcessor
 MessageProcessor MessageProcessorBuilder.build()
           
 MessageProcessor DefaultMessageProcessorPathElement.getMessageProcessor()
           
 MessageProcessor MessageProcessorPathElement.getMessageProcessor()
           
static MessageProcessor MessageProcessors.lifecyleAwareMessageProcessorWrapper(MessageProcessor mp)
           
 

Methods in org.mule.api.processor that return types with arguments of type MessageProcessor
 List<MessageProcessor> MessageProcessorChain.getMessageProcessors()
           
 

Methods in org.mule.api.processor with parameters of type MessageProcessor
 MessageProcessorPathElement DefaultMessageProcessorPathElement.addChild(MessageProcessor mp)
           
 MessageProcessorPathElement MessageProcessorPathElement.addChild(MessageProcessor mp)
           
 void MessageRouter.addRoute(MessageProcessor processor)
          Adds a new message processor to the list of routes
 MessageProcessorChainBuilder MessageProcessorChainBuilder.chain(MessageProcessor... processors)
           
static MessageProcessor MessageProcessors.lifecyleAwareMessageProcessorWrapper(MessageProcessor mp)
           
 void MessageRouter.removeRoute(MessageProcessor processor)
          Removes a message processor from the list of routes
 void RequestReplyReplierMessageProcessor.setReplyProcessor(MessageProcessor replyMessageProcessor)
           
static MessageProcessorChain MessageProcessors.singletonChain(MessageProcessor mp)
           
 

Method parameters in org.mule.api.processor with type arguments of type MessageProcessor
 void ProcessingStrategy.configureProcessors(List<MessageProcessor> processors, ProcessingStrategy.StageNameSource nameSource, MessageProcessorChainBuilder chainBuilder, MuleContext muleContext)
           
 

Constructors in org.mule.api.processor with parameters of type MessageProcessor
DefaultMessageProcessorPathElement(MessageProcessor messageProcessor, String name)
           
 

Uses of MessageProcessor in org.mule.api.routing
 

Subinterfaces of MessageProcessor in org.mule.api.routing
 interface MatchableMessageProcessor
           
 interface MatchableMessageRouter
           
 interface MatchingRouter
          Routes the message to zero or more MatchableMessageProcessors.
 interface OutboundRouter
          OutboundRouter is used to control outbound routing behaviour for an event.
 interface OutboundRouterCatchAllStrategy
          RouterCatchAllStrategy is a strategy interface that allows developers to hook in custom code when an event is being routed on the inbound or outbound but does not match any of the criteria defined for the routing.
 interface OutboundRouterCollection
          RouterCollection defines the interface for a MessageRouter that manages more than one router.
 interface SelectiveRouter
          Routes the event to MessageProcessors using a Filter to evaluate the event being processed and determine if a given route should be used.
 

Fields in org.mule.api.routing declared as MessageProcessor
protected  MessageProcessor RoutingException.route
           
 

Methods in org.mule.api.routing that return MessageProcessor
 MessageProcessor RoutingException.getRoute()
           
 

Methods in org.mule.api.routing that return types with arguments of type MessageProcessor
 List<MessageProcessor> OutboundRouter.getRoutes()
          Gets a list of MessageProcessor instances associated with this router
 

Methods in org.mule.api.routing with parameters of type MessageProcessor
 void SelectiveRouter.addRoute(MessageProcessor processor, Filter filter)
           
 void SelectiveRouter.removeRoute(MessageProcessor processor)
           
 void SelectiveRouter.setDefaultRoute(MessageProcessor processor)
           
 void SelectiveRouter.updateRoute(MessageProcessor processor, Filter filter)
           
 

Constructors in org.mule.api.routing with parameters of type MessageProcessor
CouldNotRouteOutboundMessageException(Message message, MuleEvent event, MessageProcessor target)
           
CouldNotRouteOutboundMessageException(Message message, MuleEvent event, MessageProcessor target, Throwable cause)
           
CouldNotRouteOutboundMessageException(MuleEvent event, MessageProcessor target)
           
CouldNotRouteOutboundMessageException(MuleEvent event, MessageProcessor target, Throwable cause)
           
ResponseTimeoutException(Message message, MuleEvent event, MessageProcessor target)
           
ResponseTimeoutException(Message message, MuleEvent event, MessageProcessor target, Throwable cause)
           
RoutePathNotFoundException(Message message, MuleEvent event, MessageProcessor target)
           
RoutePathNotFoundException(Message message, MuleEvent event, MessageProcessor target, Throwable cause)
           
RoutePathNotFoundException(MuleEvent event, MessageProcessor target)
           
RoutePathNotFoundException(MuleEvent event, MessageProcessor target, Throwable cause)
           
RoutingException(Message message, MuleEvent event, MessageProcessor route)
           
RoutingException(Message message, MuleEvent event, MessageProcessor route, Throwable cause)
           
RoutingException(MuleEvent event, MessageProcessor route)
           
RoutingException(MuleEvent event, MessageProcessor route, Throwable cause)
           
 

Uses of MessageProcessor in org.mule.api.service
 

Methods in org.mule.api.service that return MessageProcessor
 MessageProcessor Service.getOutboundMessageProcessor()
          Deprecated. Outbound Routers control how events are published by a service once.
 

Methods in org.mule.api.service with parameters of type MessageProcessor
 void Service.setOutboundMessageProcessor(MessageProcessor processor)
          Deprecated. Outbound message processor controls how events are published by a service once the event has been processed.
 

Uses of MessageProcessor in org.mule.api.source
 

Methods in org.mule.api.source with parameters of type MessageProcessor
 void MessageSource.setListener(MessageProcessor listener)
          Set the MessageProcessor listener on a message source which will be invoked when a message is received or generated.
 

Uses of MessageProcessor in org.mule.api.transformer
 

Subinterfaces of MessageProcessor in org.mule.api.transformer
 interface Converter
          Defines a Transformer that is a data type converters, ie: convert data from a type to another without modifying the meaning of the data.
 interface DiscoverableTransformer
          A interface to denote that a transformer is discoverable.
 interface MessageTransformer
          A transformer intended to transform Mule messages rather than arbitrary objects
 interface Transformer
          Transformer can be chained together to covert message payloads from one object type to another.
 

Uses of MessageProcessor in org.mule.api.transport
 

Subinterfaces of MessageProcessor in org.mule.api.transport
 interface MessageDispatcher
          Combine MessageDispatching with various lifecycle methods for the actual instances doing message sending.
 

Methods in org.mule.api.transport with parameters of type MessageProcessor
 void Connector.registerListener(InboundEndpoint endpoint, MessageProcessor listener, FlowConstruct flowConstruct)
          Registers a MessageProcessor listener which will listen to new message received from a specific transport channel and then processed by the endpoint.
 

Constructors in org.mule.api.transport with parameters of type MessageProcessor
DispatchException(Message message, MuleEvent event, MessageProcessor target)
           
DispatchException(Message message, MuleEvent event, MessageProcessor target, Throwable cause)
           
DispatchException(MuleEvent event, MessageProcessor target)
           
DispatchException(MuleEvent event, MessageProcessor target, Throwable cause)
           
 

Uses of MessageProcessor in org.mule.component
 

Classes in org.mule.component that implement MessageProcessor
 class AbstractComponent
          Abstract Component to be used by all Component implementations.
 class AbstractJavaComponent
          Abstract implementation of JavaComponent adds JavaComponent specifics like EntryPointResolverSet and ObjectFactory.
 class DefaultInterfaceBinding
           
 class DefaultJavaComponent
          Default implementation of JavaComponent.
 class PooledJavaComponent
          PooledJavaComponent implements pooling.
 class SimpleCallableJavaComponent
          Simple JavaComponent implementation to be used when LifecycleAdapter is not required because i) the object instance implements Callable and so entry-point resolution is required and ii) component bindings are not used.
An ObjectFactory can be set but must return object instances that implement Callable.
 

Uses of MessageProcessor in org.mule.component.simple
 

Classes in org.mule.component.simple that implement MessageProcessor
 class PassThroughComponent
          PassThroughComponent will simply return the payload back as the result.
 

Uses of MessageProcessor in org.mule.config.dsl.routers
 

Classes in org.mule.config.dsl.routers that implement MessageProcessor
 class ContentBasedRouter
          Deprecated. 
 

Uses of MessageProcessor in org.mule.config.i18n
 

Methods in org.mule.config.i18n with parameters of type MessageProcessor
static Message CoreMessages.errorInvokingMessageProcessorAsynchronously(MessageProcessor processor)
           
static Message CoreMessages.errorInvokingMessageProcessorWithinTransaction(MessageProcessor processor, TransactionConfig transactionConfig)
           
static Message CoreMessages.errorSchedulingMessageProcessorForAsyncInvocation(MessageProcessor processor)
           
static Message CoreMessages.failedToRouterViaEndpoint(MessageProcessor target)
           
 

Uses of MessageProcessor in org.mule.construct
 

Classes in org.mule.construct that implement MessageProcessor
 class AbstractPipeline.ProcessIfPipelineStartedMessageProcessor
           
 class Flow
          This implementation of AbstractPipeline adds the following functionality: Rejects inbound events when Flow is not started Gathers statistics and processing time data Implements MessagePorcessor allowing direct invocation of the pipeline Supports the optional configuration of a ProcessingStrategy that determines how message processors are processed.
 

Fields in org.mule.construct declared as MessageProcessor
protected  MessageProcessor AbstractPipeline.pipeline
           
 

Fields in org.mule.construct with type parameters of type MessageProcessor
protected  List<MessageProcessor> AbstractPipeline.messageProcessors
           
protected  List<MessageProcessor> AbstractConfigurationPattern.responseTransformers
           
protected  List<MessageProcessor> AbstractConfigurationPattern.transformers
           
 

Methods in org.mule.construct that return MessageProcessor
protected  MessageProcessor AbstractPipeline.createPipeline()
          Creates a AbstractPipeline.ProcessIfPipelineStartedMessageProcessor that will process messages from the configured MessageSource .
 

Methods in org.mule.construct that return types with arguments of type MessageProcessor
 List<MessageProcessor> AbstractPipeline.getMessageProcessors()
           
 

Methods in org.mule.construct with parameters of type MessageProcessor
 String AbstractPipeline.getProcessorPath(MessageProcessor processor)
           
 

Method parameters in org.mule.construct with type arguments of type MessageProcessor
 void AbstractPipeline.setMessageProcessors(List<MessageProcessor> messageProcessors)
           
 

Constructor parameters in org.mule.construct with type arguments of type MessageProcessor
AbstractConfigurationPattern(String name, MuleContext muleContext, List<MessageProcessor> transformers, List<MessageProcessor> responseTransformers)
           
AbstractConfigurationPattern(String name, MuleContext muleContext, List<MessageProcessor> transformers, List<MessageProcessor> responseTransformers)
           
Bridge(String name, MuleContext muleContext, MessageSource messageSource, OutboundEndpoint outboundEndpoint, List<MessageProcessor> transformers, List<MessageProcessor> responseTransformers, MessageExchangePattern exchangePattern, boolean transacted)
           
Bridge(String name, MuleContext muleContext, MessageSource messageSource, OutboundEndpoint outboundEndpoint, List<MessageProcessor> transformers, List<MessageProcessor> responseTransformers, MessageExchangePattern exchangePattern, boolean transacted)
           
SimpleService(String name, MuleContext muleContext, MessageSource messageSource, List<MessageProcessor> transformers, List<MessageProcessor> responseTransformers, Component component, SimpleService.Type type)
           
SimpleService(String name, MuleContext muleContext, MessageSource messageSource, List<MessageProcessor> transformers, List<MessageProcessor> responseTransformers, Component component, SimpleService.Type type)
           
 

Uses of MessageProcessor in org.mule.construct.builder
 

Fields in org.mule.construct.builder with type parameters of type MessageProcessor
protected  List<MessageProcessor> AbstractFlowConstructBuilder.responseTransformers
           
protected  List<MessageProcessor> AbstractFlowConstructBuilder.transformers
           
 

Uses of MessageProcessor in org.mule.construct.processor
 

Classes in org.mule.construct.processor that implement MessageProcessor
 class FlowConstructStatisticsMessageProcessor
           
 

Uses of MessageProcessor in org.mule.context.notification
 

Fields in org.mule.context.notification declared as MessageProcessor
protected  MessageProcessor AsyncMessageNotification.messageProcessor
           
 

Methods in org.mule.context.notification that return MessageProcessor
 MessageProcessor AsyncMessageNotification.getMessageProcessor()
           
 MessageProcessor MessageProcessorNotification.getProcessor()
           
 

Constructors in org.mule.context.notification with parameters of type MessageProcessor
AsyncMessageNotification(Pipeline pipeline, MuleEvent event, MessageProcessor messageProcessor, int action)
           
AsyncMessageNotification(Pipeline pipeline, MuleEvent event, MessageProcessor messageProcessor, int action, MessagingException exception)
           
MessageProcessorNotification(FlowConstruct flowConstruct, MuleEvent event, MessageProcessor processor, MessagingException exceptionThrown, int action)
           
 

Uses of MessageProcessor in org.mule.el
 

Classes in org.mule.el that implement MessageProcessor
 class ExpressionLanguageComponent
           
 

Uses of MessageProcessor in org.mule.endpoint
 

Classes in org.mule.endpoint that implement MessageProcessor
 class DefaultOutboundEndpoint
           
 class DynamicOutboundEndpoint
          An Outbound endpoint who's URI is a template used to created new non dynamic endpoints based on the current message.
 class DynamicURIOutboundEndpoint
          Allows EndpointURI to be set and changed dynamically by wrapping up an immutable endpoint instance.
 

Fields in org.mule.endpoint with type parameters of type MessageProcessor
protected  List<MessageProcessor> AbstractEndpointBuilder.messageProcessors
           
protected  List<MessageProcessor> AbstractEndpointBuilder.responseMessageProcessors
           
 

Methods in org.mule.endpoint that return MessageProcessor
 MessageProcessor DefaultEndpointMessageProcessorChainFactory.createInboundMessageProcessorChain(InboundEndpoint endpoint, FlowConstruct flowConstruct, MessageProcessor target)
           
 MessageProcessor DefaultInboundEndpoint.createMessageProcessorChain(FlowConstruct flowContruct)
           
protected  MessageProcessor DefaultOutboundEndpoint.createMessageProcessorChain(FlowConstruct flowContruct)
           
protected abstract  MessageProcessor AbstractEndpoint.createMessageProcessorChain(FlowConstruct flowContruct)
           
 MessageProcessor DefaultEndpointMessageProcessorChainFactory.createOutboundMessageProcessorChain(OutboundEndpoint endpoint, FlowConstruct flowConstruct, MessageProcessor target)
           
 MessageProcessor AbstractEndpoint.getMessageProcessorChain(FlowConstruct flowContruct)
           
protected  MessageProcessor DefaultInboundEndpoint.getPolledMessageProcessor()
           
protected  MessageProcessor EndpointMessageProcessorChainBuilder.initializeMessageProcessor(Object processor)
           
 

Methods in org.mule.endpoint that return types with arguments of type MessageProcessor
protected  List<MessageProcessor> AbstractEndpointBuilder.addReplyToProcessors(List<MessageProcessor> processors)
           
protected  List<MessageProcessor> AbstractEndpointBuilder.addResponseTransformerProcessors(EndpointURI endpointURI)
           
protected  List<MessageProcessor> AbstractEndpointBuilder.addTransformerProcessors(EndpointURI endpointURI)
           
protected  List<MessageProcessor> DefaultEndpointMessageProcessorChainFactory.createInboundMessageProcessors(InboundEndpoint endpoint)
          Override this method to change the default MessageProcessors.
protected  List<MessageProcessor> DefaultEndpointMessageProcessorChainFactory.createInboundResponseMessageProcessors(InboundEndpoint endpoint)
          Override this method to change the default MessageProcessors.
protected  List<MessageProcessor> DefaultEndpointMessageProcessorChainFactory.createOutboundMessageProcessors(OutboundEndpoint endpoint)
          Override this method to change the default MessageProcessors.
protected  List<MessageProcessor> DefaultEndpointMessageProcessorChainFactory.createOutboundResponseMessageProcessors(OutboundEndpoint endpoint)
          Override this method to change the default MessageProcessors.
 List<MessageProcessor> AbstractEndpointBuilder.getMessageProcessors()
           
 List<MessageProcessor> AbstractEndpoint.getMessageProcessors()
           
 List<MessageProcessor> DynamicOutboundEndpoint.getMessageProcessors()
           
 List<MessageProcessor> DynamicURIInboundEndpoint.getMessageProcessors()
           
 List<MessageProcessor> DynamicURIOutboundEndpoint.getMessageProcessors()
           
 List<MessageProcessor> AbstractEndpointBuilder.getResponseMessageProcessors()
           
 List<MessageProcessor> AbstractEndpoint.getResponseMessageProcessors()
           
 List<MessageProcessor> DynamicOutboundEndpoint.getResponseMessageProcessors()
           
 List<MessageProcessor> DynamicURIInboundEndpoint.getResponseMessageProcessors()
           
 List<MessageProcessor> DynamicURIOutboundEndpoint.getResponseMessageProcessors()
           
 

Methods in org.mule.endpoint with parameters of type MessageProcessor
 void AbstractEndpointBuilder.addMessageProcessor(MessageProcessor messageProcessor)
           
 void AbstractEndpointBuilder.addResponseMessageProcessor(MessageProcessor messageProcessor)
           
 MessageProcessor DefaultEndpointMessageProcessorChainFactory.createInboundMessageProcessorChain(InboundEndpoint endpoint, FlowConstruct flowConstruct, MessageProcessor target)
           
 MessageProcessor DefaultEndpointMessageProcessorChainFactory.createOutboundMessageProcessorChain(OutboundEndpoint endpoint, FlowConstruct flowConstruct, MessageProcessor target)
           
 void DefaultInboundEndpoint.setListener(MessageProcessor listener)
           
 void DynamicURIInboundEndpoint.setListener(MessageProcessor listener)
           
 

Method parameters in org.mule.endpoint with type arguments of type MessageProcessor
protected  List<MessageProcessor> AbstractEndpointBuilder.addReplyToProcessors(List<MessageProcessor> processors)
           
 void AbstractEndpointBuilder.setMessageProcessors(List<MessageProcessor> newMessageProcessors)
           
 void AbstractEndpointBuilder.setResponseMessageProcessors(List<MessageProcessor> newResponseMessageProcessors)
           
 

Constructor parameters in org.mule.endpoint with type arguments of type MessageProcessor
AbstractEndpoint(Connector connector, EndpointURI endpointUri, String name, Map properties, TransactionConfig transactionConfig, boolean deleteUnacceptedMessages, MessageExchangePattern messageExchangePattern, int responseTimeout, String initialState, String endpointEncoding, String endpointBuilderName, MuleContext muleContext, RetryPolicyTemplate retryPolicyTemplate, AbstractRedeliveryPolicy redeliveryPolicy, EndpointMessageProcessorChainFactory messageProcessorsFactory, List<MessageProcessor> messageProcessors, List<MessageProcessor> responseMessageProcessors, boolean disableTransportTransformer, String endpointMimeType)
           
AbstractEndpoint(Connector connector, EndpointURI endpointUri, String name, Map properties, TransactionConfig transactionConfig, boolean deleteUnacceptedMessages, MessageExchangePattern messageExchangePattern, int responseTimeout, String initialState, String endpointEncoding, String endpointBuilderName, MuleContext muleContext, RetryPolicyTemplate retryPolicyTemplate, AbstractRedeliveryPolicy redeliveryPolicy, EndpointMessageProcessorChainFactory messageProcessorsFactory, List<MessageProcessor> messageProcessors, List<MessageProcessor> responseMessageProcessors, boolean disableTransportTransformer, String endpointMimeType)
           
DefaultInboundEndpoint(Connector connector, EndpointURI endpointUri, String name, Map properties, TransactionConfig transactionConfig, boolean deleteUnacceptedMessage, MessageExchangePattern messageExchangePattern, int responseTimeout, String initialState, String endpointEncoding, String endpointBuilderName, MuleContext muleContext, RetryPolicyTemplate retryPolicyTemplate, AbstractRedeliveryPolicy redeliveryPolicy, EndpointMessageProcessorChainFactory messageProcessorsFactory, List<MessageProcessor> messageProcessors, List<MessageProcessor> responseMessageProcessors, boolean disableTransportTransformer, String mimeType)
           
DefaultInboundEndpoint(Connector connector, EndpointURI endpointUri, String name, Map properties, TransactionConfig transactionConfig, boolean deleteUnacceptedMessage, MessageExchangePattern messageExchangePattern, int responseTimeout, String initialState, String endpointEncoding, String endpointBuilderName, MuleContext muleContext, RetryPolicyTemplate retryPolicyTemplate, AbstractRedeliveryPolicy redeliveryPolicy, EndpointMessageProcessorChainFactory messageProcessorsFactory, List<MessageProcessor> messageProcessors, List<MessageProcessor> responseMessageProcessors, boolean disableTransportTransformer, String mimeType)
           
DefaultOutboundEndpoint(Connector connector, EndpointURI endpointUri, String name, Map properties, TransactionConfig transactionConfig, boolean deleteUnacceptedMessage, MessageExchangePattern messageExchangePattern, int responseTimeout, String initialState, String endpointEncoding, String endpointBuilderName, MuleContext muleContext, RetryPolicyTemplate retryPolicyTemplate, AbstractRedeliveryPolicy redeliveryPolicy, String responsePropertiesList, EndpointMessageProcessorChainFactory messageProcessorsFactory, List<MessageProcessor> messageProcessors, List<MessageProcessor> responseMessageProcessors, boolean disableTransportTransformer, String endpointMimeType)
           
DefaultOutboundEndpoint(Connector connector, EndpointURI endpointUri, String name, Map properties, TransactionConfig transactionConfig, boolean deleteUnacceptedMessage, MessageExchangePattern messageExchangePattern, int responseTimeout, String initialState, String endpointEncoding, String endpointBuilderName, MuleContext muleContext, RetryPolicyTemplate retryPolicyTemplate, AbstractRedeliveryPolicy redeliveryPolicy, String responsePropertiesList, EndpointMessageProcessorChainFactory messageProcessorsFactory, List<MessageProcessor> messageProcessors, List<MessageProcessor> responseMessageProcessors, boolean disableTransportTransformer, String endpointMimeType)
           
 

Uses of MessageProcessor in org.mule.endpoint.inbound
 

Classes in org.mule.endpoint.inbound that implement MessageProcessor
 class InboundEndpointMimeTypeCheckingMessageProcessor
          Verify that the inbound mime type is acceptable by this endpoint.
 class InboundEndpointPropertyMessageProcessor
          Sets the inbound endpoint uri on as a property of the message using the following key: MuleProperties.MULE_ORIGINATING_ENDPOINT_PROPERTY.
 class InboundExceptionDetailsMessageProcessor
          Sets error message properties as specified by the transport based on the exception type of the exception payload.
 class InboundLoggingMessageProcessor
           
 class InboundNotificationMessageProcessor
          Publishes a EndpointMessageNotification's when a message is received.
 

Uses of MessageProcessor in org.mule.endpoint.outbound
 

Classes in org.mule.endpoint.outbound that implement MessageProcessor
 class OutboundEndpointMimeTypeCheckingMessageProcessor
          Verify that the outbound mime type is acceptable by this endpoint.
 class OutboundEndpointPropertyMessageProcessor
          Sets the outbound endpoint uri on as a property of the message using the following key: MuleProperties.MULE_ENDPOINT_PROPERTY.
 class OutboundEventTimeoutMessageProcessor
           
 class OutboundLoggingMessageProcessor
           
 class OutboundNotificationMessageProcessor
          Publishes a EndpointMessageNotification's when a message is sent or dispatched.
 class OutboundResponsePropertiesMessageProcessor
          Propagates properties from request message to response message as defined by OutboundEndpoint.getResponseProperties().
 class OutboundRewriteResponseEventMessageProcessor
           
 class OutboundRootMessageIdPropertyMessageProcessor
          Sets the outbound root message id on as a property of the message using the following key: MuleProperties.MULE_ROOT_MESSAGE_ID_PROPERTY.
 class OutboundSessionHandlerMessageProcessor
          Stores session information on the outbound message.
 class OutboundTxRollbackMessageProcessor
          MessageProcessor implementation that stops outbound flow is the current transaction has been rolled back.
 

Uses of MessageProcessor in org.mule.enricher
 

Classes in org.mule.enricher that implement MessageProcessor
 class MessageEnricher
          The Message Enricher allows the current message to be augmented using data from a seperate resource.
 

Methods in org.mule.enricher that return types with arguments of type MessageProcessor
protected  List<MessageProcessor> MessageEnricher.getOwnedMessageProcessors()
           
 

Methods in org.mule.enricher with parameters of type MessageProcessor
 void MessageEnricher.setEnrichmentMessageProcessor(MessageProcessor enrichmentProcessor)
           
 void MessageEnricher.setMessageProcessor(MessageProcessor enrichmentProcessor)
          For spring
 

Uses of MessageProcessor in org.mule.exception
 

Classes in org.mule.exception that implement MessageProcessor
 class RedeliveryExceeded
           
 

Fields in org.mule.exception with type parameters of type MessageProcessor
protected  List<MessageProcessor> AbstractExceptionListener.messageProcessors
           
 

Methods in org.mule.exception that return types with arguments of type MessageProcessor
 List<MessageProcessor> AbstractExceptionListener.getMessageProcessors()
           
 List<MessageProcessor> RedeliveryExceeded.getMessageProcessors()
           
protected  List<MessageProcessor> AbstractExceptionListener.getOwnedMessageProcessors()
           
protected  List<MessageProcessor> RollbackMessagingExceptionStrategy.getOwnedMessageProcessors()
           
 

Methods in org.mule.exception with parameters of type MessageProcessor
 void AbstractExceptionListener.addEndpoint(MessageProcessor processor)
           
 boolean AbstractExceptionListener.removeMessageProcessor(MessageProcessor processor)
           
protected  void AbstractExceptionListener.routeException(MuleEvent event, MessageProcessor target, Throwable t)
          Deprecated. use AbstractExceptionListener.routeException(org.mule.api.MuleEvent, Throwable) instead
 

Method parameters in org.mule.exception with type arguments of type MessageProcessor
 void AbstractExceptionListener.setMessageProcessors(List<MessageProcessor> processors)
           
 void RedeliveryExceeded.setMessageProcessors(List<MessageProcessor> processors)
           
 

Uses of MessageProcessor in org.mule.execution
 

Methods in org.mule.execution with parameters of type MessageProcessor
 MuleEvent MessageProcessorExecutionTemplate.execute(MessageProcessor messageProcessor, MuleEvent event)
           
 MuleEvent ExceptionToMessagingExceptionExecutionInterceptor.execute(MessageProcessor messageProcessor, MuleEvent event)
           
 MuleEvent MessageProcessorExecutionInterceptor.execute(MessageProcessor messageProcessor, MuleEvent event)
           
 

Uses of MessageProcessor in org.mule.expression
 

Methods in org.mule.expression that return MessageProcessor
protected  MessageProcessor MessageProcessorExpressionEvaluator.lookupMessageProcessor(String processorName, MuleContext muleContext)
           
 

Uses of MessageProcessor in org.mule.expression.transformers
 

Classes in org.mule.expression.transformers that implement MessageProcessor
 class AbstractExpressionTransformer
          This transformer will evaluate one or more expressions on the current message and return the results as an Array.
 class BeanBuilderTransformer
          This transformer uses the returnClass to create the return object and then will populate the bean with arguments defined as expressions
 class ExpressionTransformer
          This transformer will evaluate one or more expressions on the current message and return the results as an Array.
 

Uses of MessageProcessor in org.mule.interceptor
 

Classes in org.mule.interceptor that implement MessageProcessor
 class AbstractEnvelopeInterceptor
          EnvelopeInterceptor is an intercepter that will fire before and after an event is received.
 class InterceptorStack
          Maintains a list of interceptors that can be applied to components.
 class LoggingInterceptor
          LoggingInterceptor is a simple interceptor that logs a message before and after the event processing.
 class ProcessingTimeInterceptor
          Calculate and record the processing time for a message processing chain
 class TimerInterceptor
          TimerInterceptor simply times and displays the time taken to process an event.
 

Constructors in org.mule.interceptor with parameters of type MessageProcessor
ProcessingTimeInterceptor(MessageProcessor next, FlowConstruct fc)
           
 

Uses of MessageProcessor in org.mule.lifecycle.processor
 

Classes in org.mule.lifecycle.processor that implement MessageProcessor
 class ProcessIfStartedMessageProcessor
           
 class ProcessIfStartedWaitIfPausedMessageProcessor
           
 class ProcessIfStartedWaitIfSyncPausedMessageProcessor
           
 

Uses of MessageProcessor in org.mule.model.seda
 

Classes in org.mule.model.seda that implement MessageProcessor
 class SedaService
          Deprecated. 
 

Methods in org.mule.model.seda that return MessageProcessor
protected  MessageProcessor SedaService.getServiceStartedAssertingMessageProcessor()
          Deprecated.  
 

Uses of MessageProcessor in org.mule.processor
 

Classes in org.mule.processor that implement MessageProcessor
 class AbstractDynamicMessageProcessor
          Implementation of MessageProcessor that dynamically chooses and uses another MessageProcessor
 class AbstractFilteringMessageProcessor
          Abstract InterceptingMessageProcessor that can be easily be extended and used for filtering message flow through a MessageProcessor chain.
 class AbstractInterceptingMessageProcessor
          Abstract implementation of InterceptingMessageProcessor that simply provides an implementation of setNext and holds the next message processor as an attribute.
 class AbstractInterceptingMessageProcessorBase
          Abstract implementation that provides the infrastructure for intercepting message processors.
 class AbstractRedeliveryPolicy
          Implement a redelivery policy for Mule.
 class AbstractResponseMessageProcessor
           
 class AsyncDelegateMessageProcessor
          Processes MuleEvent's asynchronously using a MuleWorkManager to schedule asynchronous processing of MessageProcessor delegate configured the next MessageProcessor.
 class AsyncInterceptingMessageProcessor
          Processes MuleEvent's asynchronously using a MuleWorkManager to schedule asynchronous processing of the next MessageProcessor.
 class EndpointTransactionalInterceptingMessageProcessor
          Wraps the invocation of the next MessageProcessor with a transaction.
 class ExceptionHandlingMessageProcessor
           
 class IdempotentRedeliveryPolicy
          Implement a retry policy for Mule.
 class InvokerMessageProcessor
          InvokerMessageProcessor invokes a specified method of an object.
 class LaxAsyncInterceptingMessageProcessor
           
 class LaxSedaStageInterceptingMessageProcessor
          Processes MuleEvent's asynchronously using a MuleWorkManager to schedule asynchronous processing of the next MessageProcessor.
 class NullMessageProcessor
           
 class ResponseMessageProcessorAdapter
           
 class SecurityFilterMessageProcessor
          Filters the flow using the specified SecurityFilter.
 class SedaStageInterceptingMessageProcessor
          Processes MuleEvent's asynchronously using a MuleWorkManager to schedule asynchronous processing of the next MessageProcessor.
 class StopFurtherMessageProcessingMessageProcessor
           
 class TransactionalInterceptingMessageProcessor
          Wraps the invocation of the next MessageProcessor with a transaction.
 

Fields in org.mule.processor declared as MessageProcessor
protected  MessageProcessor AbstractRedeliveryPolicy.deadLetterQueue
           
protected  MessageProcessor AsyncDelegateMessageProcessor.delegate
           
protected  MessageProcessor AbstractInterceptingMessageProcessorBase.next
           
protected  MessageProcessor ResponseMessageProcessorAdapter.responseProcessor
           
protected  MessageProcessor AsyncWorkListener.target
           
protected  MessageProcessor AbstractFilteringMessageProcessor.unacceptedMessageProcessor
          The MessageProcessor that should be used to handle messages that are not accepted by the filter.
 

Fields in org.mule.processor with type parameters of type MessageProcessor
protected  List<MessageProcessor> AsyncDelegateMessageProcessor.processors
           
 

Methods in org.mule.processor that return MessageProcessor
 MessageProcessor AbstractInterceptingMessageProcessorBase.getListener()
           
 MessageProcessor AbstractRedeliveryPolicy.getTheFailedMessageProcessor()
           
 MessageProcessor AbstractFilteringMessageProcessor.getUnacceptedMessageProcessor()
           
protected abstract  MessageProcessor AbstractDynamicMessageProcessor.resolveMessageProcessor(MuleEvent event)
          Determines which MessageProcessor should be used.
 

Methods in org.mule.processor that return types with arguments of type MessageProcessor
 List<MessageProcessor> NullMessageProcessor.getMessageProcessors()
           
protected  List<MessageProcessor> AsyncDelegateMessageProcessor.getOwnedMessageProcessors()
           
protected abstract  List<MessageProcessor> AbstractMessageProcessorOwner.getOwnedMessageProcessors()
           
protected  List<MessageProcessor> AbstractMessageProcessorOwner.getOwnedObjects()
           
 

Methods in org.mule.processor with parameters of type MessageProcessor
 void AsyncDelegateMessageProcessor.setDelegate(MessageProcessor delegate)
           
 void AbstractInterceptingMessageProcessorBase.setListener(MessageProcessor next)
           
 void IdempotentRedeliveryPolicy.setMessageProcessor(MessageProcessor processor)
           
 void ResponseMessageProcessorAdapter.setProcessor(MessageProcessor processor)
           
 void AbstractFilteringMessageProcessor.setUnacceptedMessageProcessor(MessageProcessor unacceptedMessageProcessor)
           
 

Constructors in org.mule.processor with parameters of type MessageProcessor
AsyncDelegateMessageProcessor(MessageProcessor delegate, ProcessingStrategy processingStrategy, String name)
           
AsyncWorkListener(MessageProcessor target)
           
ResponseMessageProcessorAdapter(MessageProcessor responseProcessor)
           
 

Uses of MessageProcessor in org.mule.processor.chain
 

Classes in org.mule.processor.chain that implement MessageProcessor
 class AbstractMessageProcessorChain
          Builder needs to return a composite rather than the first MessageProcessor in the chain.
 class DefaultMessageProcessorChain
           
 class InterceptingChainLifecycleWrapper
          Builder needs to return a composite rather than the first MessageProcessor in the chain.
 class SimpleMessageProcessorChain
           
 class SubflowInterceptingChainLifecycleWrapper
          Generates message processor identfiers specific for subflows.
 

Fields in org.mule.processor.chain with type parameters of type MessageProcessor
protected  List<MessageProcessor> AbstractMessageProcessorChain.processors
           
 

Methods in org.mule.processor.chain that return MessageProcessor
protected  MessageProcessor AbstractMessageProcessorChainBuilder.initializeMessageProcessor(Object processor)
           
 

Methods in org.mule.processor.chain that return types with arguments of type MessageProcessor
 List<MessageProcessor> InterceptingChainLifecycleWrapper.getMessageProcessors()
           
 List<MessageProcessor> AbstractMessageProcessorChain.getMessageProcessors()
           
 

Methods in org.mule.processor.chain with parameters of type MessageProcessor
 DefaultMessageProcessorChainBuilder DefaultMessageProcessorChainBuilder.chain(MessageProcessor... processors)
           
 DefaultMessageProcessorChainBuilder DefaultMessageProcessorChainBuilder.chainBefore(MessageProcessor processor)
           
static MessageProcessorChain DefaultMessageProcessorChain.from(MessageProcessor... messageProcessors)
           
static MessageProcessorChain DefaultMessageProcessorChain.from(MessageProcessor messageProcessor)
           
protected  boolean DefaultMessageProcessorChain.processorMayReturnNull(MessageProcessor processor)
           
 

Method parameters in org.mule.processor.chain with type arguments of type MessageProcessor
 DefaultMessageProcessorChainBuilder DefaultMessageProcessorChainBuilder.chain(List<MessageProcessor> processors)
           
protected  DefaultMessageProcessorChain DefaultMessageProcessorChainBuilder.createInnerChain(LinkedList<MessageProcessor> tempList)
           
protected  DefaultMessageProcessorChain SimpleMessageProcessorChainBuilder.createInnerChain(LinkedList<MessageProcessor> tempList)
           
protected  DefaultMessageProcessorChain DefaultMessageProcessorChainBuilder.createOuterChain(LinkedList<MessageProcessor> tempList)
           
protected  DefaultMessageProcessorChain SimpleMessageProcessorChainBuilder.createOuterChain(LinkedList<MessageProcessor> tempList)
           
static MessageProcessorChain DefaultMessageProcessorChain.from(List<MessageProcessor> messageProcessors)
           
 

Constructors in org.mule.processor.chain with parameters of type MessageProcessor
DefaultMessageProcessorChain(MessageProcessor... processors)
           
DefaultMessageProcessorChain(String name, MessageProcessor... processors)
           
SimpleMessageProcessorChain(MessageProcessor... processors)
           
SimpleMessageProcessorChain(String name, MessageProcessor... processors)
           
 

Constructor parameters in org.mule.processor.chain with type arguments of type MessageProcessor
AbstractMessageProcessorChain(String name, List<MessageProcessor> processors)
           
DefaultMessageProcessorChain(List<MessageProcessor> processors)
           
DefaultMessageProcessorChain(String name, List<MessageProcessor> processors)
           
InterceptingChainLifecycleWrapper(MessageProcessorChain chain, List<MessageProcessor> processors, String name)
           
SimpleMessageProcessorChain(List<MessageProcessor> processors)
           
SimpleMessageProcessorChain(String name, List<MessageProcessor> processors)
           
SubflowInterceptingChainLifecycleWrapper(MessageProcessorChain chain, List<MessageProcessor> processors, String name)
           
 

Uses of MessageProcessor in org.mule.processor.strategy
 

Method parameters in org.mule.processor.strategy with type arguments of type MessageProcessor
 void ThreadPerProcessorProcessingStrategy.configureProcessors(List<MessageProcessor> processors, ProcessingStrategy.StageNameSource nameSource, MessageProcessorChainBuilder builder, MuleContext muleContext)
           
 void SynchronousProcessingStrategy.configureProcessors(List<MessageProcessor> processors, ProcessingStrategy.StageNameSource nameSource, MessageProcessorChainBuilder chainBuilder, MuleContext muleContext)
           
 void AsynchronousProcessingStrategy.configureProcessors(List<MessageProcessor> processors, ProcessingStrategy.StageNameSource nameSource, MessageProcessorChainBuilder chainBuilder, MuleContext muleContext)
           
 void QueuedThreadPerProcessorProcessingStrategy.configureProcessors(List<MessageProcessor> processors, ProcessingStrategy.StageNameSource nameSource, MessageProcessorChainBuilder builder, MuleContext muleContext)
           
 

Uses of MessageProcessor in org.mule.routing
 

Classes in org.mule.routing that implement MessageProcessor
 class AbstractAggregator
          AbstractEventAggregator will aggregate a set of messages into a single message.
 class AbstractCatchAllStrategy
          RouterCatchAllStrategy is a strategy interface that allows developers to hook in custom code when an event is being routed on the inbound or outbound but does not match any of the criteria defined for the routing.
 class AbstractCorrelationAggregator
          AbstractCorrelationAggregatingMessageProcessor uses the CorrelationID and CorrelationGroupSize properties of the MuleMessage to manage message groups.
 class AbstractMatchingRouter
          AbstractRouterCollection provides common method implementations of router collections for in and outbound routers.
 class AbstractSelectiveRouter
           
 class AbstractSplitter
          Splits a message invoking the next message processor one for each split part.
 class ChoiceRouter
          Routes the event to a singleMessageProcessor using a Filter to evaluate the event being processed and find the first route that can be used.
 class CollectionSplitter
          Splits a message that has a Collection, Iterable, MessageSequence or Iterator payload invoking the next message processor one for each item in it.
 class DynamicAll
          Routes a message through a set of routes that will be obtained dynamically (per message) using a DynamicRouteResolver.
 class DynamicFirstSuccessful
          Routes a message through a set of routes that will be obtained dynamically (per message) using a DynamicRouteResolver.
 class ExpressionSplitter
          Splits a message using the expression provided invoking the next message processor one for each split part.
 class FirstSuccessful
          FirstSuccessful routes an event to the first target route that can accept it without throwing or returning an exception.
 class Foreach
          ` * The Foreach MessageProcessor allows iterating over a collection payload, or any collection obtained by an expression, generating a message for each element.
 class ForwardingCatchAllStrategy
          ForwardingCatchAllStrategy acts as a catch and forward router for any events not caught by the router this strategy is associated with.
 class IdempotentMessageFilter
          IdempotentMessageFilter ensures that only unique messages are passed on.
 class IdempotentSecureHashMessageFilter
          IdempotentSecureHashMessageFilter ensures that only unique messages are received by a service.
 class LoggingCatchAllStrategy
          LoggingCatchAllStrategy is a simple strategy that only logs any events not caught by the router associated with this strategy.
 class MapSplitter
          Splits a message that has a map payload invoking the next message processor one for each item in the map in order.
 class MessageChunkAggregator
           
 class MessageChunkSplitter
          A router that breaks up the current message onto smaller parts and sends them to the same destination.
 class MessageFilter
          Implementation of InterceptingMessageProcessor that filters message flow using a Filter.
 class Resequencer
          Resequencer is used to resequence events according to their dispatch sequence in the correlation group.
 class RoundRobin
          RoundRobin divides the messages it receives among its target routes in round-robin fashion.
 class ServiceCatchAllStrategy
          Deprecated.  
 class SimpleCollectionAggregator
          This router will return all aggregated events as a MuleMessageCollection.
 class UntilSuccessful
          UntilSuccessful attempts to route a message to the message processor it contains in an asynchronous manner.
 class WireTap
          The WireTap MessageProcessor allows inspection of messages in a flow.
 

Fields in org.mule.routing declared as MessageProcessor
protected  MessageProcessor AbstractMatchingRouter.defaultRoute
           
protected  MessageProcessor WireTap.filteredTap
           
protected  MessageProcessor WireTap.tap
           
 

Methods in org.mule.routing that return MessageProcessor
 MessageProcessor AbstractMatchingRouter.getDefaultRoute()
           
 MessageProcessor MessageProcessorFilterPair.getMessageProcessor()
           
 MessageProcessor WireTap.getTap()
           
 

Methods in org.mule.routing that return types with arguments of type MessageProcessor
protected  List<MessageProcessor> WireTap.getOwnedMessageProcessors()
           
protected  List<MessageProcessor> Foreach.getOwnedMessageProcessors()
           
 List<MessageProcessor> DynamicRouteResolver.resolveRoutes(MuleEvent event)
          Return a list of MessageProcessor to route the message.
protected  Collection<MessageProcessor> ChoiceRouter.selectProcessors(MuleEvent event)
           
protected abstract  Collection<MessageProcessor> AbstractSelectiveRouter.selectProcessors(MuleEvent event)
           
 

Methods in org.mule.routing with parameters of type MessageProcessor
 void AbstractSelectiveRouter.addRoute(MessageProcessor processor, Filter filter)
           
protected  MuleEvent AbstractRoutingStrategy.createEventToRoute(MuleEvent routedEvent, MuleMessage message, MessageProcessor route)
          Create a new event to be routed to the target MP
 void AbstractSelectiveRouter.removeRoute(MessageProcessor processor)
           
protected  MuleEvent AbstractRoutingStrategy.sendRequest(MuleEvent routedEvent, MuleMessage message, MessageProcessor route, boolean awaitResponse)
          Send message event to destination.
 void AbstractMatchingRouter.setDefaultRoute(MessageProcessor defaultRoute)
           
 void AbstractSelectiveRouter.setDefaultRoute(MessageProcessor processor)
           
 void WireTap.setMessageProcessor(MessageProcessor tap)
          Deprecated. 
 void ForwardingCatchAllStrategy.setMessageProcessor(MessageProcessor processor)
           
 void WireTap.setTap(MessageProcessor tap)
           
 void AbstractSelectiveRouter.updateRoute(MessageProcessor processor, Filter filter)
           
 

Method parameters in org.mule.routing with type arguments of type MessageProcessor
 MuleEvent RoutingStrategy.route(MuleEvent event, List<MessageProcessor> messageProcessors)
          Routes MuleEvent through a set of MessageProcessor
 MuleEvent MulticastingRoutingStrategy.route(MuleEvent event, List<MessageProcessor> messageProcessors)
           
 MuleEvent FirstSuccessfulRoutingStrategy.route(MuleEvent event, List<MessageProcessor> messageProcessors)
           
 void Foreach.setMessageProcessors(List<MessageProcessor> messageProcessors)
           
 

Constructors in org.mule.routing with parameters of type MessageProcessor
AggregationException(EventGroup eventGroup, MessageProcessor endpoint)
           
AggregationException(EventGroup eventGroup, MessageProcessor endpoint, Throwable cause)
           
AggregationException(Message message, EventGroup eventGroup, MessageProcessor endpoint)
           
AggregationException(Message message, EventGroup eventGroup, MessageProcessor endpoint, Throwable cause)
           
MessageFilter(Filter filter, boolean throwExceptionOnUnaccepted, MessageProcessor messageProcessor)
           
MessageProcessorFilterPair(MessageProcessor messageProcessor, Filter filter)
           
RoutingFailedMessagingException(Message message, MuleEvent event, MessageProcessor failingMessageProcessor)
           
RoutingFailedMessagingException(Message message, MuleEvent event, Throwable cause, MessageProcessor failingMessageProcessor)
           
RoutingFailedMessagingException(MuleEvent event, Throwable cause, MessageProcessor failingMessageProcessor)
           
 

Uses of MessageProcessor in org.mule.routing.correlation
 

Constructors in org.mule.routing.correlation with parameters of type MessageProcessor
EventCorrelator(EventCorrelatorCallback callback, MessageProcessor timeoutMessageProcessor, MessageInfoMapping messageInfoMapping, MuleContext muleContext, String flowConstructName, boolean persistentStores, String storePrefix)
           
 

Uses of MessageProcessor in org.mule.routing.outbound
 

Classes in org.mule.routing.outbound that implement MessageProcessor
 class AbstractMessageSequenceSplitter
          Base implementation of a MuleMessage splitter, that converts its payload in a MessageSequence, and process each element of it.
 class AbstractMessageSplitter
          AbstractMessageSplitter is an outbound Message Splitter used to split the contents of a received message into sub parts that can be processed by other components.
 class AbstractOutboundRouter
          AbstractOutboundRouter is a base router class that tracks statistics about message processing through the router.
 class AbstractRecipientList
          AbstractRecipientList is used to dispatch a single event to multiple recipients over the same transport.
 class AbstractRoundRobinMessageSplitter
          FilteringListMessageSplitter accepts a List as a message payload then routes list elements as messages over an endpoint where the endpoint's filter accepts the payload.
 class AbstractSequenceRouter
          Defines a router that sequentially routes a given message to the list of registered endpoints and returns the aggregate responses as the result.
 class ChainingRouter
          ChainingRouter is used to pass a Mule event through multiple targets using the result of the first as the input for the second.
 class DefaultOutboundRouterCollection
          DefaultOutboundRouterCollection is a container of routers.
 class EndpointSelector
          EndpointSelector selects the outgoing endpoint based on a an expression evaluator ("header:endpoint" by default).
 class ExceptionBasedRouter
          ExceptionBasedRouter Will send the current event to the first endpoint that doesn't throw an exception.
 class ExpressionMessageSplitter
          Evaluates a single expression and adds the results of the expression as individual message parts.
 class ExpressionRecipientList
           
 class FilteringOutboundRouter
          FilteringRouter is a router that accepts events based on a filter set.
 class ListMessageSplitter
          FilteringListMessageSplitter accepts a List as a message payload then routes list elements as messages over an endpoint where the endpoint's filter accepts the payload.
 class MessageChunkingRouter
          A router that breaks up the current message onto smaller parts and sends them to the same destination.
 class MulticastingRouter
          MulticastingRouter will broadcast the current message to every endpoint registered with the router.
 class OutboundPassThroughRouter
          OutboundPassThroughRouter allows outbound routing over a single endpoint without any filtering.
 class SequenceRouter
          Defines a AbstractSequenceRouter that stops the routing of a given message when a synchronous endpoint has returned a null or an exception message.
 class StaticRecipientList
          StaticRecipientList is used to dispatch a single event to multiple recipients over the same transport.
 class TransformerRouter
          Deprecated.  
 

Fields in org.mule.routing.outbound with type parameters of type MessageProcessor
protected  List<MessageProcessor> AbstractOutboundRouter.routes
           
 

Methods in org.mule.routing.outbound that return MessageProcessor
 MessageProcessor FilteringOutboundRouter.getRoute(int index, MuleEvent event)
          Will Return the target at the given index and will resolve any template tags on the Endpoint URI if necessary
 MessageProcessor AbstractOutboundRouter.getRoute(String name)
           
protected  MessageProcessor EndpointSelector.lookupEndpoint(String endpointName)
           
 

Methods in org.mule.routing.outbound that return types with arguments of type MessageProcessor
protected  List<MessageProcessor> AbstractOutboundRouter.getOwnedMessageProcessors()
           
 List<MessageProcessor> AbstractOutboundRouter.getRoutes()
           
 

Methods in org.mule.routing.outbound with parameters of type MessageProcessor
 void AbstractOutboundRouter.addRoute(MessageProcessor route)
           
 void FilteringOutboundRouter.addRoute(MessageProcessor target)
           
 void OutboundPassThroughRouter.addRoute(MessageProcessor target)
           
protected  MuleEvent AbstractOutboundRouter.createEventToRoute(MuleEvent routedEvent, MuleMessage message, MessageProcessor route)
          Create a new event to be routed to the target MP
 void AbstractOutboundRouter.removeRoute(MessageProcessor route)
           
protected  MuleEvent AbstractOutboundRouter.sendRequest(MuleEvent routedEvent, MuleMessage message, MessageProcessor route, boolean awaitResponse)
           
protected  MuleEvent AbstractOutboundRouter.sendRequestEvent(MuleEvent routedEvent, MuleMessage message, MessageProcessor route, boolean awaitResponse)
          Send message event to destination.
protected  void AbstractOutboundRouter.setMessageProperties(FlowConstruct service, MuleMessage message, MessageProcessor route)
           
 

Method parameters in org.mule.routing.outbound with type arguments of type MessageProcessor
protected  SplitMessage AbstractRoundRobinMessageSplitter.getMessageParts(MuleMessage message, List<MessageProcessor> endpoints)
          Retrieves a specific message part for the given endpoint.
protected abstract  SplitMessage AbstractMessageSplitter.getMessageParts(MuleMessage message, List<MessageProcessor> endpoints)
          Implementing classes should create a SplitMessage instance and for each part can associate an endpoint.
 void AbstractOutboundRouter.setMessageProcessors(List<MessageProcessor> routes)
          Deprecated. 
 void AbstractOutboundRouter.setRoutes(List<MessageProcessor> routes)
           
 void OutboundPassThroughRouter.setRoutes(List<MessageProcessor> endpoints)
           
 

Uses of MessageProcessor in org.mule.routing.requestreply
 

Classes in org.mule.routing.requestreply that implement MessageProcessor
 class AbstractAsyncRequestReplyRequester
           
 class AbstractReplyToPropertyRequestReplyReplier
           
 class AsyncReplyToPropertyRequestReplyReplier
           
 class ReplyToParameterProcessor
          Propagate any replyTo parameter from the event's message to the event itself.
 class ReplyToPropertyRequestReplyReplier
           
 class SimpleAsyncRequestReplyRequester
           
 class SimpleRequestReplyReplier
           
 

Fields in org.mule.routing.requestreply declared as MessageProcessor
protected  MessageProcessor SimpleRequestReplyReplier.replyMessageProcessor
           
protected  MessageProcessor SimpleAsyncRequestReplyRequester.requestMessageProcessor
           
 

Methods in org.mule.routing.requestreply with parameters of type MessageProcessor
 void SimpleAsyncRequestReplyRequester.setMessageProcessor(MessageProcessor processor)
           
 void SimpleRequestReplyReplier.setReplyProcessor(MessageProcessor replyMessageProcessor)
           
 void AbstractReplyToPropertyRequestReplyReplier.setReplyProcessor(MessageProcessor replyMessageProcessor)
           
 

Uses of MessageProcessor in org.mule.service
 

Classes in org.mule.service that implement MessageProcessor
 class AbstractService
          Deprecated. 
 class ForwardingConsumer
          Deprecated.  
 

Fields in org.mule.service declared as MessageProcessor
protected  MessageProcessor ServiceCompositeMessageSource.catchAllStrategy
          Deprecated.  
protected  MessageProcessor AbstractService.outboundRouter
          Deprecated.  
 

Fields in org.mule.service with type parameters of type MessageProcessor
protected  List<MessageProcessor> ServiceCompositeMessageSource.processors
          Deprecated.  
 

Methods in org.mule.service that return MessageProcessor
 MessageProcessor ServiceCompositeMessageSource.getCatchAllStrategy()
          Deprecated.  
 MessageProcessor AbstractService.getOutboundMessageProcessor()
          Deprecated.  
protected  MessageProcessor AbstractService.getServiceStartedAssertingMessageProcessor()
          Deprecated.  
 

Methods in org.mule.service that return types with arguments of type MessageProcessor
 List<MessageProcessor> ServiceCompositeMessageSource.getMessageProcessors()
          Deprecated.  
 

Methods in org.mule.service with parameters of type MessageProcessor
 void ServiceCompositeMessageSource.addMessageProcessor(MessageProcessor processor)
          Deprecated.  
 void ServiceCompositeMessageSource.setCatchAllStrategy(MessageProcessor catchAllStrategy)
          Deprecated.  
 void AbstractService.setMessageProcessor(MessageProcessor processor)
          Deprecated. 
 void AbstractService.setOutboundMessageProcessor(MessageProcessor processor)
          Deprecated.  
 

Method parameters in org.mule.service with type arguments of type MessageProcessor
 void ServiceCompositeMessageSource.setMessageProcessors(List<MessageProcessor> processors)
          Deprecated.  
 

Uses of MessageProcessor in org.mule.service.processor
 

Classes in org.mule.service.processor that implement MessageProcessor
 class ServiceAsyncRequestReplyRequestor
          Deprecated. 
 class ServiceInternalMessageProcessor
          Deprecated. 
 class ServiceLoggingMessageProcessor
          Deprecated. 
 class ServiceOutboundMessageProcessor
          Deprecated. 
 class ServiceOutboundStatisticsMessageProcessor
          Deprecated. 
 class ServiceSetEventRequestContextMessageProcessor
          Deprecated. 
 class ServiceStatisticsMessageProcessor
          Deprecated. 
 

Uses of MessageProcessor in org.mule.source
 

Fields in org.mule.source declared as MessageProcessor
protected  MessageProcessor StartableCompositeMessageSource.listener
           
 

Methods in org.mule.source with parameters of type MessageProcessor
 void StartableCompositeMessageSource.setListener(MessageProcessor listener)
           
 void ClusterizableMessageSourceWrapper.setListener(MessageProcessor listener)
           
 

Uses of MessageProcessor in org.mule.transformer
 

Classes in org.mule.transformer that implement MessageProcessor
 class AbstractDiscoverableTransformer
           
 class AbstractMessageAwareTransformer
          Deprecated.  
 class AbstractMessageTransformer
          AbstractMessageTransformer is a transformer that has a reference to the current message.
 class AbstractTransformer
          AbstractTransformer is a base class for all transformers.
 class CompositeConverter
          Composes many converters to behave as a single one.
 class TransformerChain
          A referencable chain of transformers that can be used as a single transformer
 class TransformerTemplate
          TODO
 

Uses of MessageProcessor in org.mule.transformer.codec
 

Classes in org.mule.transformer.codec that implement MessageProcessor
 class Base64Decoder
          Base64Encoder transforms Base64 encoded data into strings or byte arrays.
 class Base64Encoder
          Base64Encoder transforms strings or byte arrays into Base64 encoded string.
 class XmlEntityDecoder
          Decodes a String or byte[] containing XML entities
 class XmlEntityEncoder
          Encodes a string with XML entities
 

Uses of MessageProcessor in org.mule.transformer.compression
 

Classes in org.mule.transformer.compression that implement MessageProcessor
 class AbstractCompressionTransformer
          AbstractCompressionTransformer is a base class for all transformers that can compress or uncompress data when they performa message transformation.
 class GZipCompressTransformer
          GZipCompressTransformer is a transformer compressing objects into byte arrays.
 class GZipUncompressTransformer
          GZipCompressTransformer will uncompress a byte[] or InputStream
 

Uses of MessageProcessor in org.mule.transformer.encryption
 

Classes in org.mule.transformer.encryption that implement MessageProcessor
 class AbstractEncryptionTransformer
          EncryptionTransformer will transform an array of bytes or string into an encrypted array of bytes
 class DecryptionTransformer
          EncryptionTransformer will transform an encrypted array of bytes or string into an decrypted array of bytes
 class EncryptionTransformer
          EncryptionTransformer will transform an array of bytes or string into an encrypted array of bytes
 

Uses of MessageProcessor in org.mule.transformer.simple
 

Classes in org.mule.transformer.simple that implement MessageProcessor
 class AbstractAddVariablePropertyTransformer
           
 class AbstractRemoveVariablePropertyTransformer
           
 class AddAttachmentTransformer
           
 class AddFlowVariableTransformer
           
 class AddPropertyTransformer
           
 class AddSessionVariableTransformer
           
 class AutoTransformer
          A transformer that uses the transform discovery mechanism to convert the message payload.
 class BeanToMap
          Conversts a simple bean object to a Map.
 class ByteArrayToHexString
          Converts a Byte array to a Hex String.
 class ByteArrayToMuleMessage
          TODO
 class ByteArrayToObject
          ByteArrayToObject works in the same way as ByteArrayToSerializable but checks if the byte array is a serialised object and if not will return a String created from the bytes as the returnType on the transformer.
 class ByteArrayToSerializable
          ByteArrayToSerializable converts a serialized object to its object representation
 class CombineCollectionsTransformer
          Takes a payload which is a Collection of Collections and turns into a single List.
 class CopyAttachmentsTransformer
           
 class CopyPropertiesTransformer
           
 class DataHandlerToInputStreamTransformer
           
 class GetBeanProperty
          Looks up a property from a JavaBean using PropertyUtils.getProperty().
 class HexStringToByteArray
          Converts a Hex String to a Byte array
 class MapLookup
          MapLookup looks up and returns an object from a Map based on a key.
 class MapToBean
          Creates and object of type AbstractTransformer.getReturnClass() and populates values of a Map as bean properties on the object.
 class MessagePropertiesTransformer
           A configurable message transformer that allows users to add, overwrite, rename and delete properties on the current message.
 class MuleMessageToByteArray
          TODO
 class NumberToString
          NumberToString converts a Number to a String.
 class ObjectArrayToString
          ObjectArrayToString transformer is the opposite of StringToObjectArray - it simply converts Object[] to a String in which each element is separated by a configurable delimiter (default is a space).
 class ObjectToByteArray
          ObjectToByteArray converts serilaizable object to a byte array but treats java.lang.String differently by converting to bytes using the String.getBytrs() method.
 class ObjectToInputStream
          ObjectToInputStream converts Serializable objects to an InputStream but treats java.lang.String, byte[] and org.mule.api.transport.OutputHandler differently by using their byte[] content rather thqn Serializing them.
 class ObjectToOutputHandler
          ObjectToOutputHandler converts a byte array into a String.
 class ObjectToString
          ObjectToString transformer is useful for debugging.
 class ParseTemplateTransformer
          Loads a template and parses its content to resolve expressions.
 class PropertyEditorTextToValueTransformer
          PropertyEditorTextToValueTransformer adapts a PropertyEditor instance allowing it to be used to transform from a String to another type in Mule
 class PropertyEditorValueToTextTransformer
          PropertyEditorValueToTextTransformer adapts a PropertyEditor instance allowing it to be used to transform from a specific type to a String.
 class RemoveAttachmentTransformer
           
 class RemoveFlowVariableTransformer
           
 class RemovePropertyTransformer
           
 class RemoveSessionVariableTransformer
           
 class SerializableToByteArray
          SerializableToByteArray converts a serializable object or a String to a byte array.
 class SetPayloadTransformer
          Transformer that modifies the payload of the message according to the provided value.
 class StringAppendTransformer
           
 class StringToBoolean
          ByteArrayToSerializable converts a serialized object to its object representation
 class StringToNumber
          StringToNumber converts a String to a Number.
 class StringToObjectArray
          StringToObjectArray converts a String into an object array.
 

Uses of MessageProcessor in org.mule.transport
 

Classes in org.mule.transport that implement MessageProcessor
 class AbstractMessageDispatcher
          Abstract implementation of an outbound channel adaptors.
 class UnsupportedMessageDispatcher
           
 

Fields in org.mule.transport declared as MessageProcessor
protected  MessageProcessor AbstractMessageReceiver.listener
          MessageProcessor chain used to process messages once the transport specific MessageReceiver has received transport message and created the MuleEvent
 

Methods in org.mule.transport that return MessageProcessor
 MessageProcessor AbstractConnector.createDispatcherMessageProcessor(OutboundEndpoint endpoint)
           
 

Methods in org.mule.transport with parameters of type MessageProcessor
 void AbstractConnector.registerListener(InboundEndpoint endpoint, MessageProcessor messageProcessorChain, FlowConstruct flowConstruct)
           
 void AbstractMessageReceiver.setListener(MessageProcessor processor)
           
 

Uses of MessageProcessor in org.mule.transport.polling
 

Fields in org.mule.transport.polling declared as MessageProcessor
protected  MessageProcessor MessageProcessorPollingMessageReceiver.sourceMessageProcessor
           
 

Uses of MessageProcessor in org.mule.util
 

Methods in org.mule.util that return types with arguments of type MessageProcessor
static Map<MessageProcessor,String> NotificationUtils.buildPaths(MessageProcessorPathElement element)
           
 

Method parameters in org.mule.util with type arguments of type MessageProcessor
static void NotificationUtils.addMessageProcessorPathElements(List<MessageProcessor> processors, MessageProcessorPathElement parentElement)
           
 



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