Uses of Interface
org.mule.api.MuleEventContext

Packages that use MuleEventContext
org.mule The Mule implementation of the Universal Message Objects(tm) API specification. 
org.mule.api.lifecycle Lifecycle interfaces for all Components. 
org.mule.api.model Contains the interfaces for the Model and supporting objects such as the CompoenntResolver, EntryPointResolver, etc. 
org.mule.component.simple A collection of simple mule components that can be useful to simplify configuration while testing. 
org.mule.example.cep   
org.mule.example.errorhandler   
org.mule.example.geomail.components   
org.mule.example.scripting   
org.mule.expression   
org.mule.impl.model.resolvers   
org.mule.model.resolvers   
org.mule.module.atom   
org.mule.module.atom.server   
org.mule.module.client.remoting   
org.mule.module.cxf   
org.mule.module.scripting.component Base classes for script based components such as BeanShell or Groovy. 
org.mule.module.spring.events A Spring EventMulticaster that allows any Spring bean to send and receive mule events through the ApplicationContext and event listeners. 
org.mule.module.spring.remoting   
org.mule.tck.functional Helper classes and interfaces used by Mule fnctional tests. 
org.mule.tck.property   
org.mule.tck.security   
org.mule.transport.soap.axis Provides an Axis soap transport for Mule
org.mule.transport.soap.axis.extras   
 

Uses of MuleEventContext in org.mule
 

Classes in org.mule that implement MuleEventContext
 class DefaultMuleEventContext
          DefaultMuleEventContext is the context object for the current request.
 

Methods in org.mule that return MuleEventContext
static MuleEventContext RequestContext.getEventContext()
          Deprecated.  
 

Uses of MuleEventContext in org.mule.api.lifecycle
 

Methods in org.mule.api.lifecycle with parameters of type MuleEventContext
 Object Callable.onCall(MuleEventContext eventContext)
          Passes the event to the listener
 

Uses of MuleEventContext in org.mule.api.model
 

Methods in org.mule.api.model with parameters of type MuleEventContext
 InvocationResult EntryPointResolver.invoke(Object component, MuleEventContext context)
           
 Object EntryPointResolverSet.invoke(Object component, MuleEventContext context)
          Will attempt to invoke the component by looping through all EntryPointResolver instances registered on this set until a match is found
 Object EntryPoint.invoke(Object component, MuleEventContext context)
           
 

Uses of MuleEventContext in org.mule.component.simple
 

Methods in org.mule.component.simple with parameters of type MuleEventContext
 Object NullComponent.onCall(MuleEventContext context)
           
 Object StaticComponent.onCall(MuleEventContext eventContext)
           
 Object LogComponent.onCall(MuleEventContext context)
           
 Object EchoComponent.onCall(MuleEventContext context)
           
 

Uses of MuleEventContext in org.mule.example.cep
 

Methods in org.mule.example.cep with parameters of type MuleEventContext
 Object TickFeed.onCall(MuleEventContext eventContext)
           
 

Uses of MuleEventContext in org.mule.example.errorhandler
 

Methods in org.mule.example.errorhandler with parameters of type MuleEventContext
 Object BusinessErrorManager.onCall(MuleEventContext context)
           
 

Uses of MuleEventContext in org.mule.example.geomail.components
 

Methods in org.mule.example.geomail.components with parameters of type MuleEventContext
 Object DataGenerator.onCall(MuleEventContext eventContext)
           
 Object Storage.onCall(MuleEventContext context)
           
 Object Mail.onCall(MuleEventContext eventContext)
           
 

Uses of MuleEventContext in org.mule.example.scripting
 

Methods in org.mule.example.scripting with parameters of type MuleEventContext
 Object AccumulatorComponent.onCall(MuleEventContext context)
           
 

Uses of MuleEventContext in org.mule.expression
 

Methods in org.mule.expression that return MuleEventContext
protected  MuleEventContext MuleContextExpressionEvaluator.getEventContext()
           
 

Uses of MuleEventContext in org.mule.impl.model.resolvers
 

Methods in org.mule.impl.model.resolvers with parameters of type MuleEventContext
protected  Object[] AnnotatedEntryPointResolver.getPayloadForMethod(Method method, Object component, MuleEventContext context)
           
protected  Object[] AnnotatedEntryPointResolver.getPayloadFromMessageWithAnnotations(Method method, MuleEventContext context)
           
protected  void AnnotatedEntryPointResolver.initCache(Object component, MuleEventContext context)
           
 InvocationResult AnnotatedEntryPointResolver.invoke(Object component, MuleEventContext context)
           
 

Uses of MuleEventContext in org.mule.model.resolvers
 

Methods in org.mule.model.resolvers with parameters of type MuleEventContext
protected  Method AbstractEntryPointResolver.addMethodByName(Object component, Method method, MuleEventContext context)
           
protected  Method AbstractEntryPointResolver.getMethodByName(Object component, String methodName, MuleEventContext context)
           
protected  Object[] NoArgumentsEntryPointResolver.getPayloadFromMessage(MuleEventContext context)
           
protected  Object[] ArrayEntryPointResolver.getPayloadFromMessage(MuleEventContext context)
           
protected  Object[] AbstractEntryPointResolver.getPayloadFromMessage(MuleEventContext context)
           
 InvocationResult AbstractArgumentEntryPointResolver.invoke(Object component, MuleEventContext context)
           
 InvocationResult ExplicitMethodEntryPointResolver.invoke(Object component, MuleEventContext context)
           
 InvocationResult ReflectionEntryPointResolver.invoke(Object component, MuleEventContext context)
          Will discover the entrypoint on the service using the payload type to figure out the method to call.
 InvocationResult MethodHeaderPropertyEntryPointResolver.invoke(Object component, MuleEventContext context)
           
 InvocationResult CallableEntryPointResolver.invoke(Object component, MuleEventContext context)
           
 Object DefaultEntryPointResolverSet.invoke(Object component, MuleEventContext context)
           
 

Uses of MuleEventContext in org.mule.module.atom
 

Methods in org.mule.module.atom with parameters of type MuleEventContext
 Object AbderaServiceComponent.AbderaCallable.onCall(MuleEventContext event)
           
 

Uses of MuleEventContext in org.mule.module.atom.server
 

Constructors in org.mule.module.atom.server with parameters of type MuleEventContext
MuleRequestContext(org.apache.abdera.protocol.server.Provider context, MuleEventContext event, MuleMessage request, String contextPath, org.apache.abdera.i18n.iri.IRI baseIri)
           
 

Uses of MuleEventContext in org.mule.module.client.remoting
 

Methods in org.mule.module.client.remoting with parameters of type MuleEventContext
protected  ServerHandshake RemoteDispatcherComponent.doHandshake(MuleEventContext context)
           
protected  Object RemoteDispatcherComponent.invokeAction(RemoteDispatcherNotification action, MuleEventContext context)
           
 Object RemoteDispatcherComponent.onCall(MuleEventContext context)
           
protected  Object RemoteDispatcherComponent.receiveAction(RemoteDispatcherNotification action, MuleEventContext context)
           
protected  Object RemoteDispatcherComponent.sendAction(RemoteDispatcherNotification action, MuleEventContext context)
           
 

Uses of MuleEventContext in org.mule.module.cxf
 

Methods in org.mule.module.cxf with parameters of type MuleEventContext
 Object WSProxyService.onCall(MuleEventContext eventContext)
           
 

Uses of MuleEventContext in org.mule.module.scripting.component
 

Methods in org.mule.module.scripting.component with parameters of type MuleEventContext
 Object GroovyRefreshableBeanBuilder.onCall(MuleEventContext eventContext)
           
 

Uses of MuleEventContext in org.mule.module.spring.events
 

Methods in org.mule.module.spring.events that return MuleEventContext
 MuleEventContext MuleApplicationEvent.getMuleEventContext()
           
 

Methods in org.mule.module.spring.events with parameters of type MuleEventContext
 Object MuleEventMulticaster.onCall(MuleEventContext context)
          This is the callback method used by Mule to give Mule events to this Multicaster
 

Uses of MuleEventContext in org.mule.module.spring.remoting
 

Methods in org.mule.module.spring.remoting with parameters of type MuleEventContext
 Object SpringRemoteInvokerComponent.onCall(MuleEventContext eventContext)
           
 

Uses of MuleEventContext in org.mule.tck.functional
 

Methods in org.mule.tck.functional that return MuleEventContext
 MuleEventContext FunctionalTestNotification.getEventContext()
           
 

Methods in org.mule.tck.functional with parameters of type MuleEventContext
 void EventCallback.eventReceived(MuleEventContext context, Object component)
           
 void ResponseWriterCallback.eventReceived(MuleEventContext context, Object component)
           
 void CounterCallback.eventReceived(MuleEventContext context, Object Component)
           
 void CountdownCallback.eventReceived(MuleEventContext context, Object Component)
           
 Object TransactionalFunctionalTestComponent.onCall(MuleEventContext context)
          Passes the event to the listener
 Object FunctionalStreamingTestComponent.onCall(MuleEventContext context)
           
 Object FunctionalTestComponent.onCall(MuleEventContext context)
          Passes the event to the listener
protected  Object FunctionalTestComponent.process(Object data, MuleEventContext context)
          The service method that implements the test component logic.
 

Constructors in org.mule.tck.functional with parameters of type MuleEventContext
FunctionalTestNotification(MuleEventContext context, Object replyMessage, int action)
           
 

Uses of MuleEventContext in org.mule.tck.property
 

Methods in org.mule.tck.property with parameters of type MuleEventContext
 Object SessionPropertiesValidatorComponent.onCall(MuleEventContext eventContext)
           
 

Uses of MuleEventContext in org.mule.tck.security
 

Methods in org.mule.tck.security with parameters of type MuleEventContext
 Object TestSecurityComponent.onCall(MuleEventContext eventContext)
           
 

Uses of MuleEventContext in org.mule.transport.soap.axis
 

Methods in org.mule.transport.soap.axis with parameters of type MuleEventContext
 void AxisServiceComponent.doGet(MuleEventContext context, AxisStringWriter response)
           
protected  void AxisServiceComponent.doPost(MuleEventContext context, AxisStringWriter response)
           
protected  String AxisServiceComponent.getServiceName(MuleEventContext context, EndpointURI endpointUri)
           
 Object AxisServiceComponent.onCall(MuleEventContext context)
          Passes the context to the listener
protected  void AxisServiceComponent.processMethodRequest(org.apache.axis.MessageContext msgContext, MuleEventContext context, AxisStringWriter response, EndpointURI endpointUri)
           
protected  void AxisServiceComponent.reportAvailableServices(MuleEventContext context, AxisStringWriter response)
           
protected  void AxisServiceComponent.reportCantGetAxisService(MuleEventContext context, AxisStringWriter response)
           
 

Uses of MuleEventContext in org.mule.transport.soap.axis.extras
 

Methods in org.mule.transport.soap.axis.extras with parameters of type MuleEventContext
static Map<String,Object> AxisCleanAndAddProperties.cleanAndAdd(MuleEventContext muleEventContext)
           
 



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