Uses of Interface
org.mule.umo.UMOComponent

Packages that use UMOComponent
org.mule.config.builders Various configuration builders for configuring a Mule Instance. 
org.mule.impl The Mule implementation of the Universal Message Objects(tm) API specification. 
org.mule.impl.model   
org.mule.impl.model.direct   
org.mule.impl.model.pipeline   
org.mule.impl.model.seda   
org.mule.impl.model.seda.optimised   
org.mule.providers Contains Abstract classes providing common functionality for all Mule providers. 
org.mule.providers.service Provides SPI support for building mule connectors and providers using service descriptors. 
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.model Contains the interfaces for the Model and supporting objects such as the CompoenntResolver, EntryPointResolver, etc. 
org.mule.umo.provider Contains the interfaces that comprise a provider implementation. 
org.mule.umo.routing Interfaces that define inbound and outbound routing API. 
 

Uses of UMOComponent in org.mule.config.builders
 

Methods in org.mule.config.builders that return UMOComponent
 UMOComponent QuickConfigurationBuilder.registerComponent(String implementation, String name, String inboundEndpoint, String outboundEndpoint, Map properties)
           
 UMOComponent QuickConfigurationBuilder.registerComponent(String implementation, String name, UMOEndpoint inEndpoint, UMOEndpoint outEndpoint, Map properties)
           
 UMOComponent QuickConfigurationBuilder.registerComponent(UMODescriptor descriptor)
          Registers a user configured MuleDescriptor of a components to the server.
 UMOComponent QuickConfigurationBuilder.registerComponent(String implementation, String name, UMOEndpointURI inboundEndpointUri)
          Registers a java object as a Umo pcomponent that listens for events on the given url.
 UMOComponent QuickConfigurationBuilder.registerComponent(String implementation, String name, UMOEndpointURI inboundEndpointUri, Map properties)
          Registers a java object as a Umo pcomponent that listens for events on the given url.
 UMOComponent QuickConfigurationBuilder.registerComponent(String implementation, String name, UMOEndpointURI inboundEndpointUri, UMOEndpointURI outboundEndpointUri)
          Registers a java object as a Umo pcomponent that listens for and sends events on the given urls.
 UMOComponent QuickConfigurationBuilder.registerComponent(String implementation, String name, UMOEndpointURI inboundEndpointUri, UMOEndpointURI outboundEndpointUri, Map properties)
          Registers a java object as a Umo pcomponent that listens for and sends events on the given urls.
 

Uses of UMOComponent in org.mule.impl
 

Fields in org.mule.impl declared as UMOComponent
protected  UMOComponent DefaultComponentExceptionStrategy.component
          The component to which the Exception handler belongs
 

Methods in org.mule.impl that return UMOComponent
 UMOComponent MuleEvent.getComponent()
          Gets the recipient component of this event
 UMOComponent MuleSession.getComponent()
           
 UMOComponent DefaultComponentExceptionStrategy.getComponent()
           
 

Methods in org.mule.impl with parameters of type UMOComponent
 void DefaultComponentExceptionStrategy.setComponent(UMOComponent component)
           
 

Constructors in org.mule.impl with parameters of type UMOComponent
MuleEvent(UMOMessage message, UMOImmutableEndpoint endpoint, UMOComponent component, UMOEvent previousEvent)
          Properties cache that only reads properties once from the inbound message and merges them with any properties on the endpoint.
FailedToQueueEventException(Message message, UMOMessage umoMessage, UMOComponent component)
           
FailedToQueueEventException(Message message, UMOMessage umoMessage, UMOComponent component, Throwable cause)
           
FailedToQueueEventException(UMOMessage umoMessage, UMOComponent component, Throwable cause)
           
MuleSession(UMOComponent component)
           
MuleSession(UMOMessage message, UMOSessionHandler requestSessionHandler, UMOComponent component)
           
DefaultComponentExceptionStrategy(UMOComponent component)
          Constructor
 

Uses of UMOComponent in org.mule.impl.model
 

Classes in org.mule.impl.model that implement UMOComponent
 class AbstractComponent
          A base implementation for all UMOComponents in Mule
 

Methods in org.mule.impl.model that return UMOComponent
 UMOComponent AbstractModel.registerComponent(UMODescriptor descriptor)
           
 UMOComponent AbstractModel.getComponent(String name)
           
protected abstract  UMOComponent AbstractModel.createComponent(UMODescriptor descriptor)
           
 

Uses of UMOComponent in org.mule.impl.model.direct
 

Classes in org.mule.impl.model.direct that implement UMOComponent
 class DirectComponent
          A direct component invokes the service component directly without any threading or pooling, even when the nvocation is asynchronous
 

Methods in org.mule.impl.model.direct that return UMOComponent
protected  UMOComponent DirectModel.createComponent(UMODescriptor descriptor)
           
 

Uses of UMOComponent in org.mule.impl.model.pipeline
 

Classes in org.mule.impl.model.pipeline that implement UMOComponent
 class PipelineComponent
          todo document
 

Methods in org.mule.impl.model.pipeline that return UMOComponent
protected  UMOComponent PipelineModel.createComponent(UMODescriptor descriptor)
           
 

Uses of UMOComponent in org.mule.impl.model.seda
 

Classes in org.mule.impl.model.seda that implement UMOComponent
 class SedaComponent
          A Seda component runs inside a Seda Model and is responsible for managing a Seda Queue and thread pool for a Mule sevice component.
 

Methods in org.mule.impl.model.seda that return UMOComponent
protected  UMOComponent SedaModel.createComponent(UMODescriptor descriptor)
           
 

Uses of UMOComponent in org.mule.impl.model.seda.optimised
 

Classes in org.mule.impl.model.seda.optimised that implement UMOComponent
 class OptimisedSedaComponent
          A Seda component runs inside a Seda Model and is responsible for managing a Seda Queue and thread pool for a Mule sevice component.
 

Methods in org.mule.impl.model.seda.optimised that return UMOComponent
protected  UMOComponent OptimisedSedaModel.createComponent(UMODescriptor descriptor)
           
 

Uses of UMOComponent in org.mule.providers
 

Fields in org.mule.providers declared as UMOComponent
protected  UMOComponent AbstractMessageReceiver.component
          The Component with which this receiver is associated with
 

Methods in org.mule.providers that return UMOComponent
 UMOComponent AbstractMessageReceiver.getComponent()
           
 

Methods in org.mule.providers with parameters of type UMOComponent
 UMOMessageReceiver AbstractServiceEnabledConnector.createReceiver(UMOComponent component, UMOEndpoint endpoint)
           
 UMOMessageReceiver AbstractConnector.registerListener(UMOComponent component, UMOEndpoint endpoint)
           
protected  Object AbstractConnector.getReceiverKey(UMOComponent component, UMOEndpoint endpoint)
          The method determines the key used to store the receiver against.
 void AbstractConnector.unregisterListener(UMOComponent component, UMOEndpoint endpoint)
           
abstract  UMOMessageReceiver AbstractConnector.createReceiver(UMOComponent component, UMOEndpoint endpoint)
           
 AbstractMessageReceiver AbstractConnector.getReceiver(UMOComponent component, UMOEndpoint endpoint)
           
 void AbstractMessageReceiver.setComponent(UMOComponent component)
           
 

Constructors in org.mule.providers with parameters of type UMOComponent
TransactedPollingMessageReceiver(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint, Long frequency)
           
AbstractMessageReceiver(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint)
          Creates the Message Receiver
PollingMessageReceiver(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint, Long frequency)
           
 

Uses of UMOComponent in org.mule.providers.service
 

Methods in org.mule.providers.service with parameters of type UMOComponent
 UMOMessageReceiver ConnectorServiceDescriptor.createMessageReceiver(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint)
           
 UMOMessageReceiver ConnectorServiceDescriptor.createMessageReceiver(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint, Object[] args)
           
 

Uses of UMOComponent in org.mule.umo
 

Methods in org.mule.umo that return UMOComponent
 UMOComponent UMOEvent.getComponent()
          Retrieves the component for the current event
 UMOComponent UMOSession.getComponent()
          Returns the UMOComponent associated with the session in its current execution
 UMOComponent ComponentException.getComponent()
           
 

Constructors in org.mule.umo with parameters of type UMOComponent
ComponentException(Message message, UMOMessage umoMessage, UMOComponent component)
           
ComponentException(Message message, UMOMessage umoMessage, UMOComponent component, Throwable cause)
           
ComponentException(UMOMessage umoMessage, UMOComponent component, Throwable cause)
           
 

Uses of UMOComponent in org.mule.umo.model
 

Methods in org.mule.umo.model that return UMOComponent
 UMOComponent UMOModel.registerComponent(UMODescriptor descriptor)
          Registers a UMODescriptor with the MuleManager.
 UMOComponent UMOModel.getComponent(String name)
          Returns the UMOComponent object for the given component name
 UMOComponent UMOComponentFactory.create(UMODescriptor descriptor)
           
 

Uses of UMOComponent in org.mule.umo.provider
 

Methods in org.mule.umo.provider that return UMOComponent
 UMOComponent UMOMessageReceiver.getComponent()
           
 

Methods in org.mule.umo.provider with parameters of type UMOComponent
 UMOMessageReceiver UMOConnector.registerListener(UMOComponent component, UMOEndpoint endpoint)
          This creates a UMOMessageReceiver associated with this endpoint and registers it with the connector
 void UMOConnector.unregisterListener(UMOComponent component, UMOEndpoint endpoint)
           
 void UMOMessageReceiver.setComponent(UMOComponent component)
           
 

Uses of UMOComponent in org.mule.umo.routing
 

Methods in org.mule.umo.routing that return UMOComponent
 UMOComponent ComponentRoutingException.getComponent()
           
 

Constructors in org.mule.umo.routing with parameters of type UMOComponent
ComponentRoutingException(Message message, UMOMessage umoMessage, UMOImmutableEndpoint endpoint, UMOComponent component)
           
ComponentRoutingException(Message message, UMOMessage umoMessage, UMOImmutableEndpoint endpoint, UMOComponent component, Throwable cause)
           
ComponentRoutingException(UMOMessage umoMessage, UMOImmutableEndpoint endpoint, UMOComponent component)
           
ComponentRoutingException(UMOMessage umoMessage, UMOImmutableEndpoint endpoint, UMOComponent component, Throwable cause)
           
 



Copyright © 2003-2006 MuleSource Inc.. All Rights Reserved.