Uses of Interface
org.mule.umo.UMOEvent

Packages that use UMOEvent
org.mule.extras.acegi.filters.http   
org.mule.extras.client Simple interface for Mule clients to send and receive events from local or remote Mule Servers. 
org.mule.impl The Mule implementation of the Universal Message Objects(tm) API specification. 
org.mule.impl.security   
org.mule.impl.security.filters   
org.mule.providers Contains Abstract classes providing common functionality for all Mule providers. 
org.mule.providers.email Provides pop3, smtp and imap connectivity for Mule
org.mule.providers.file Provides file transport in the form of a directory listeners and file dispatchers. 
org.mule.providers.http Provides http transport including proxy support. 
org.mule.providers.jdbc Provides jdbc transport. 
org.mule.providers.jms Provides Jms transport connectivity with support for all Jms features. 
org.mule.providers.soap.axis Provides an Axis soap transport for Mule
org.mule.providers.soap.glue Provides an Glue soap transport for Mule
org.mule.providers.stream   
org.mule.providers.tcp Provides tcp connectivity for Mule
org.mule.providers.udp Provides Udp connectivity for Mule
org.mule.providers.vm A connector implementation allowing events to be passed between Mule sessions via in-memory queues. 
org.mule.providers.xmpp   
org.mule.routing.inbound Inbound router implementation as described in the Enterprise Integration Patterns book. 
org.mule.routing.response   
org.mule.tck Provides a suite of abstract test cases that can be used to test you custom Mule extensions. 
org.mule.transaction.constraints Contains the transaction contraint filter used to control how and when transactions are committed. 
org.mule.umo 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.umo.lifecycle Lifecycle interfaces for all UMOcomponents. 
org.mule.umo.provider Contains the interfaces that comprise a provider implementation. 
org.mule.umo.routing Interfaces that define inbound and outbound routing API. 
org.mule.umo.security   
org.mule.util.queue A generic queue implementation extending the concurrent APIs with pluggable queue persistence. 
 

Uses of UMOEvent in org.mule.extras.acegi.filters.http
 

Methods in org.mule.extras.acegi.filters.http with parameters of type UMOEvent
 void HttpBasicAuthenticationFilter.authenticateInbound(UMOEvent event)
          Authenticates the current message if authenticate is set to true.
protected  void HttpBasicAuthenticationFilter.setUnauthenticated(UMOEvent event)
           
 void HttpBasicAuthenticationFilter.authenticateOutbound(UMOEvent event)
          Authenticates the current message if authenticate is set to true.
 

Uses of UMOEvent in org.mule.extras.client
 

Methods in org.mule.extras.client that return UMOEvent
protected  UMOEvent MuleClient.getEvent(UMOMessage message, UMOEndpointURI uri, boolean synchronous)
          Packages a mule event for the current request
 

Uses of UMOEvent in org.mule.impl
 

Classes in org.mule.impl that implement UMOEvent
 class MuleEvent
          MuleEvent represents any data event occuring in the Mule environment.
 

Methods in org.mule.impl that return UMOEvent
static UMOEvent RequestContext.getEvent()
           
 UMOEvent MuleSession.createOutboundEvent(UMOMessage message, UMOEndpoint endpoint, UMOEvent previousEvent)
           
 

Methods in org.mule.impl with parameters of type UMOEvent
static void RequestContext.setEvent(UMOEvent event)
           
 void MuleSession.dispatchEvent(UMOEvent event)
           
 UMOMessage MuleSession.sendEvent(UMOEvent event)
           
 UMOEvent MuleSession.createOutboundEvent(UMOMessage message, UMOEndpoint endpoint, UMOEvent previousEvent)
           
 void MuleProxy.onEvent(UMOEvent event)
          Sets the current event being processed
 java.lang.Object MuleProxy.onCall(UMOEvent event)
          Makes a synchronous call on the UMO
 void MuleComponent.dispatchEvent(UMOEvent event)
           
 UMOMessage MuleComponent.sendEvent(UMOEvent event)
           
 java.lang.Object DefaultLifecycleAdapter.onCall(UMOEvent event)
           
 

Constructors in org.mule.impl with parameters of type UMOEvent
MuleEvent(UMOMessage message, UMOEndpoint endpoint, UMOComponent component, UMOEvent previousEvent)
           
MuleEvent(UMOMessage message, UMOEvent rewriteEvent)
          A helper constructor used to rewrite an event payload
 

Uses of UMOEvent in org.mule.impl.security
 

Methods in org.mule.impl.security with parameters of type UMOEvent
 java.lang.Object MuleHeaderCredentialsAccessor.getCredentials(UMOEvent event)
           
 void MuleHeaderCredentialsAccessor.setCredentials(UMOEvent event, java.lang.Object credentials)
           
 void AbstractEndpointSecurityFilter.authenticate(UMOEvent event)
           
protected abstract  void AbstractEndpointSecurityFilter.authenticateInbound(UMOEvent event)
           
protected abstract  void AbstractEndpointSecurityFilter.authenticateOutbound(UMOEvent event)
           
 

Uses of UMOEvent in org.mule.impl.security.filters
 

Methods in org.mule.impl.security.filters with parameters of type UMOEvent
protected  void MuleEncryptionEndpointSecurityFilter.authenticateInbound(UMOEvent event)
           
protected  void MuleEncryptionEndpointSecurityFilter.authenticateOutbound(UMOEvent event)
           
 

Uses of UMOEvent in org.mule.providers
 

Methods in org.mule.providers with parameters of type UMOEvent
 void ReplyToHandler.processReplyTo(UMOEvent event, UMOMessage returnMessage, java.lang.Object replyTo)
           
 void DefaultReplyToHandler.processReplyTo(UMOEvent event, UMOMessage returnMessage, java.lang.Object replyTo)
           
protected  UMOEndpoint DefaultReplyToHandler.getEndpoint(UMOEvent event, java.lang.String endpointUri)
           
protected  UMOMessage AbstractMessageReceiver.handleSecurtyException(UMOSecurityException e, UMOEvent event)
           
 void AbstractMessageDispatcher.dispatch(UMOEvent event)
           
 UMOMessage AbstractMessageDispatcher.send(UMOEvent event)
           
abstract  void AbstractMessageDispatcher.doDispatch(UMOEvent event)
           
abstract  UMOMessage AbstractMessageDispatcher.doSend(UMOEvent event)
           
 

Uses of UMOEvent in org.mule.providers.email
 

Methods in org.mule.providers.email with parameters of type UMOEvent
 void SmtpMessageDispatcher.doDispatch(UMOEvent event)
           
 UMOMessage SmtpMessageDispatcher.doSend(UMOEvent event)
           
 void Pop3MessageDispatcher.doDispatch(UMOEvent event)
           
 UMOMessage Pop3MessageDispatcher.doSend(UMOEvent event)
           
 void MailMessageDispatcher.doDispatch(UMOEvent event)
           
 UMOMessage MailMessageDispatcher.doSend(UMOEvent event)
           
 UMOMessage MailConnector.send(UMOEvent event)
           
 

Uses of UMOEvent in org.mule.providers.file
 

Methods in org.mule.providers.file with parameters of type UMOEvent
 java.lang.String SimpleFilenameParser.getFilename(UMOEvent event, java.lang.String pattern)
           
protected  java.lang.String SimpleFilenameParser.getFilename(UMOEvent event, java.lang.String pattern, char left, char right)
           
 java.lang.String FilenameParser.getFilename(UMOEvent event, java.lang.String pattern)
           
 void FileMessageDispatcher.doDispatch(UMOEvent event)
           
 UMOMessage FileMessageDispatcher.doSend(UMOEvent event)
           
 

Uses of UMOEvent in org.mule.providers.http
 

Methods in org.mule.providers.http with parameters of type UMOEvent
protected  UMOMessage HttpMessageReceiver.handleSecurtyException(UMOSecurityException e, UMOEvent event)
           
 void HttpClientMessageDispatcher.doDispatch(UMOEvent event)
           
 UMOMessage HttpClientMessageDispatcher.doSend(UMOEvent event)
           
 

Uses of UMOEvent in org.mule.providers.jdbc
 

Methods in org.mule.providers.jdbc with parameters of type UMOEvent
 void JdbcMessageDispatcher.doDispatch(UMOEvent event)
           
 UMOMessage JdbcMessageDispatcher.doSend(UMOEvent event)
           
 

Uses of UMOEvent in org.mule.providers.jms
 

Methods in org.mule.providers.jms with parameters of type UMOEvent
 void JmsReplyToHandler.processReplyTo(UMOEvent event, UMOMessage returnMessage, java.lang.Object replyTo)
           
 void JmsMessageDispatcher.doDispatch(UMOEvent event)
           
 UMOMessage JmsMessageDispatcher.doSend(UMOEvent event)
           
 

Uses of UMOEvent in org.mule.providers.soap.axis
 

Methods in org.mule.providers.soap.axis with parameters of type UMOEvent
 void AxisMessageDispatcher.doDispatch(UMOEvent event)
           
 UMOMessage AxisMessageDispatcher.doSend(UMOEvent event)
           
 

Constructors in org.mule.providers.soap.axis with parameters of type UMOEvent
MuleSoapHeaders(UMOEvent event)
          Extracts header properties from a Mule event
 

Uses of UMOEvent in org.mule.providers.soap.glue
 

Methods in org.mule.providers.soap.glue with parameters of type UMOEvent
 void GlueMessageDispatcher.doDispatch(UMOEvent event)
           
 UMOMessage GlueMessageDispatcher.doSend(UMOEvent event)
           
protected  void GlueMessageDispatcher.setContext(UMOEvent event)
           
 

Uses of UMOEvent in org.mule.providers.stream
 

Methods in org.mule.providers.stream with parameters of type UMOEvent
 void StreamMessageDispatcher.doDispatch(UMOEvent event)
           
 UMOMessage StreamMessageDispatcher.doSend(UMOEvent event)
           
 

Uses of UMOEvent in org.mule.providers.tcp
 

Methods in org.mule.providers.tcp with parameters of type UMOEvent
 void TcpMessageDispatcher.doDispatch(UMOEvent event)
           
 UMOMessage TcpMessageDispatcher.doSend(UMOEvent event)
           
 

Uses of UMOEvent in org.mule.providers.udp
 

Methods in org.mule.providers.udp with parameters of type UMOEvent
 void UdpMessageDispatcher.doDispatch(UMOEvent event)
           
 UMOMessage UdpMessageDispatcher.doSend(UMOEvent event)
           
 

Uses of UMOEvent in org.mule.providers.vm
 

Methods in org.mule.providers.vm with parameters of type UMOEvent
 void VMMessageReceiver.onEvent(UMOEvent event)
           
 java.lang.Object VMMessageReceiver.onCall(UMOEvent event)
           
 void VMMessageDispatcher.doDispatch(UMOEvent event)
           
 UMOMessage VMMessageDispatcher.doSend(UMOEvent event)
           
 

Uses of UMOEvent in org.mule.providers.xmpp
 

Methods in org.mule.providers.xmpp with parameters of type UMOEvent
 void XmppMessageDispatcher.doDispatch(UMOEvent event)
           
 UMOMessage XmppMessageDispatcher.doSend(UMOEvent event)
           
 

Uses of UMOEvent in org.mule.routing.inbound
 

Methods in org.mule.routing.inbound that return UMOEvent
 UMOEvent[] SelectiveConsumer.process(UMOEvent event)
           
 UMOEvent[] InboundPassThroughRouter.process(UMOEvent event)
           
 UMOEvent[] IdempotentReceiver.process(UMOEvent event)
           
 UMOEvent[] ForwardingConsumer.process(UMOEvent event)
           
 UMOEvent[] AbstractEventResequencer.process(UMOEvent event)
           
 UMOEvent[] AbstractEventAggregator.process(UMOEvent event)
           
 

Methods in org.mule.routing.inbound with parameters of type UMOEvent
 boolean SelectiveConsumer.isMatch(UMOEvent event)
           
 UMOEvent[] SelectiveConsumer.process(UMOEvent event)
           
 UMOEvent[] InboundPassThroughRouter.process(UMOEvent event)
           
 boolean InboundPassThroughRouter.isMatch(UMOEvent event)
           
 UMOMessage InboundMessageRouter.route(UMOEvent event)
           
 void InboundMessageRouter.dispatch(UMOEvent event)
           
 UMOMessage InboundMessageRouter.send(UMOEvent event)
           
 boolean IdempotentReceiver.isMatch(UMOEvent event)
           
 UMOEvent[] IdempotentReceiver.process(UMOEvent event)
           
 UMOEvent[] ForwardingConsumer.process(UMOEvent event)
           
 void EventGroup.addEvent(UMOEvent event)
           
 void EventGroup.removeEvent(UMOEvent event)
           
protected  EventGroup CorrelationAggregator.addEvent(UMOEvent event)
          Adds the event to an event group.
 UMOEvent[] AbstractEventResequencer.process(UMOEvent event)
           
protected  EventGroup AbstractEventResequencer.addEvent(UMOEvent event)
           
 UMOEvent[] AbstractEventAggregator.process(UMOEvent event)
           
protected  EventGroup AbstractEventAggregator.addEvent(UMOEvent event)
          Adds the event to an event group.
 

Uses of UMOEvent in org.mule.routing.response
 

Methods in org.mule.routing.response with parameters of type UMOEvent
 void ResponseMessageRouter.route(UMOEvent event)
           
protected  EventGroup ResponseCorrelationAggregator.addEvent(UMOEvent event)
          Adds the event to an event group.
 void AbstractResponseAggregator.process(UMOEvent event)
           
protected  EventGroup AbstractResponseAggregator.addEvent(UMOEvent event)
          Adds the event to an event group.
 

Uses of UMOEvent in org.mule.tck
 

Methods in org.mule.tck that return UMOEvent
static UMOEvent AbstractMuleTestCase.getTestEvent(java.lang.Object data)
           
static UMOEvent AbstractMuleTestCase.getTestEvent(java.lang.Object data, MuleDescriptor descriptor)
           
static UMOEvent AbstractMuleTestCase.getTestEvent(java.lang.Object data, UMOEndpoint endpoint)
           
static UMOEvent AbstractMuleTestCase.getTestEvent(java.lang.Object data, MuleDescriptor descriptor, UMOEndpoint endpoint)
           
 

Uses of UMOEvent in org.mule.transaction.constraints
 

Methods in org.mule.transaction.constraints with parameters of type UMOEvent
protected  boolean ManualConstraint.accept(UMOEvent event)
           
protected  boolean ConstraintFilter.accept(UMOEvent event)
           
 boolean BatchConstraint.accept(UMOEvent event)
           
 

Uses of UMOEvent in org.mule.umo
 

Methods in org.mule.umo that return UMOEvent
 UMOEvent UMOSession.createOutboundEvent(UMOMessage message, UMOEndpoint endpoint, UMOEvent previousEvent)
          Creates an outbound event for this session
 UMOEvent Invocation.getEvent()
           
 

Methods in org.mule.umo with parameters of type UMOEvent
 UMOMessage UMOSession.sendEvent(UMOEvent event)
          Depending on the session state this methods either Passes an event synchronously to the next available Mule UMO in the pool or via the endpoint configured for the event
 void UMOSession.dispatchEvent(UMOEvent event)
          Depending on the session state this methods either Passes an event asynchronously to the next available Mule UMO in the pool or via the endpoint configured for the event
 UMOEvent UMOSession.createOutboundEvent(UMOMessage message, UMOEndpoint endpoint, UMOEvent previousEvent)
          Creates an outbound event for this session
 void UMOComponent.dispatchEvent(UMOEvent event)
          Makes an asynhronous event call to the component.
 UMOMessage UMOComponent.sendEvent(UMOEvent event)
          Makes a synhronous event call to the component.
 

Uses of UMOEvent in org.mule.umo.lifecycle
 

Methods in org.mule.umo.lifecycle with parameters of type UMOEvent
 java.lang.Object UMOLifecycleAdapter.onCall(UMOEvent event)
           
 

Uses of UMOEvent in org.mule.umo.provider
 

Methods in org.mule.umo.provider with parameters of type UMOEvent
 void UMOMessageDispatcher.dispatch(UMOEvent event)
          Dispatches an event from the endpoint to the external system
 UMOMessage UMOMessageDispatcher.send(UMOEvent event)
          Sends an event from the endpoint to the external system
 

Uses of UMOEvent in org.mule.umo.routing
 

Methods in org.mule.umo.routing that return UMOEvent
 UMOEvent[] UMOInboundRouter.process(UMOEvent event)
           
 UMOEvent CouldNotRouteInboundEventException.getEvent()
           
 

Methods in org.mule.umo.routing with parameters of type UMOEvent
 void UMOResponseRouter.process(UMOEvent event)
           
 void UMOResponseMessageRouter.route(UMOEvent event)
           
 UMOEvent[] UMOInboundRouter.process(UMOEvent event)
           
 boolean UMOInboundRouter.isMatch(UMOEvent event)
           
 UMOMessage UMOInboundMessageRouter.route(UMOEvent event)
           
 

Constructors in org.mule.umo.routing with parameters of type UMOEvent
CouldNotRouteInboundEventException(java.lang.String message, UMOEvent event)
           
CouldNotRouteInboundEventException(java.lang.String message, java.lang.Throwable cause, UMOEvent event)
           
 

Uses of UMOEvent in org.mule.umo.security
 

Methods in org.mule.umo.security with parameters of type UMOEvent
 void UMOEndpointSecurityFilter.authenticate(UMOEvent event)
           
 java.lang.Object UMOCredentialsAccessor.getCredentials(UMOEvent event)
           
 void UMOCredentialsAccessor.setCredentials(UMOEvent event, java.lang.Object credentials)
           
 

Uses of UMOEvent in org.mule.util.queue
 

Methods in org.mule.util.queue that return UMOEvent
 UMOEvent EventHolder.getEvent()
           
 

Methods in org.mule.util.queue with parameters of type UMOEvent
 void SerialisationPersistence.store(UMOEvent event)
           
 boolean SerialisationPersistence.remove(UMOEvent event)
           
 void PersistenceStrategy.store(UMOEvent event)
           
 boolean PersistenceStrategy.remove(UMOEvent event)
           
 

Constructors in org.mule.util.queue with parameters of type UMOEvent
EventHolder(UMOEvent event)
           
 



Copyright © 2003-2005 SymphonySoft Limited. All Rights Reserved.