Uses of Interface
org.mule.umo.endpoint.UMOEndpointURI

Packages that use UMOEndpointURI
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.endpoint Implemtation of Mule endpoint uris. 
org.mule.impl.internal.admin Admin components and Agents used to control and Monitor Mule 
org.mule.impl.message Wire message implementations. 
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.endpoint Endpoint interfaces. 
org.mule.umo.provider Contains the interfaces that comprise a provider implementation. 
 

Uses of UMOEndpointURI in org.mule.config.builders
 

Methods in org.mule.config.builders with parameters of type UMOEndpointURI
 UMODescriptor QuickConfigurationBuilder.registerComponentInstance(Object component, String name, UMOEndpointURI listenerEndpointUri)
          Registers a java object as a Umo pcomponent that listens for events on the given url.
 UMODescriptor QuickConfigurationBuilder.registerComponentInstance(Object component, String name, UMOEndpointURI listenerEndpointUri, UMOEndpointURI sendEndpointUri)
          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)
          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.
 UMODescriptor QuickConfigurationBuilder.createDescriptor(String implementation, String name, UMOEndpointURI inboundEndpointUri, UMOEndpointURI outboundEndpointUri, Map properties)
          Creates a Mule Descriptor that can be further maniputalted by the calling class before registering it with the UMOModel
 

Uses of UMOEndpointURI in org.mule.impl
 

Fields in org.mule.impl declared as UMOEndpointURI
protected  UMOEndpointURI ImmutableMuleEndpoint.endpointUri
          The endpointUri on which to send or receive information
 

Methods in org.mule.impl that return UMOEndpointURI
 UMOEndpointURI ImmutableMuleEndpoint.getEndpointURI()
           
 UMOEndpointURI MuleEventContext.getEndpointURI()
           
 

Methods in org.mule.impl with parameters of type UMOEndpointURI
static UMOEndpoint ImmutableMuleEndpoint.createEndpointFromUri(UMOEndpointURI uri, String type)
           
static UMOEndpoint ImmutableMuleEndpoint.getEndpointFromUri(UMOEndpointURI uri)
           
static UMOEndpoint ImmutableMuleEndpoint.getOrCreateEndpointForUri(UMOEndpointURI uri, String type)
           
 UMOMessage MuleEventContext.sendEvent(UMOMessage message, UMOEndpointURI endpointUri)
          Depending on the session state this methods either Passes an event synchronously to the next available Mule UMO in the pool or via the endpointUri configured for the event
 FutureMessageResult MuleEventContext.sendEventAsync(UMOMessage message, UMOEndpointURI endpointUri, int timeout)
          sends an event request via the configured outbound router for this component.
 void MuleEventContext.dispatchEvent(UMOMessage message, UMOEndpointURI endpointUri)
          Depending on the session state this methods either Passes an event asynchronously to the next available Mule UMO in the pool or via the endpointUri configured for the event
 UMOMessage MuleEventContext.receiveEvent(UMOEndpointURI endpointUri, long timeout)
          Requests a synchronous receive of an event on the component
 

Constructors in org.mule.impl with parameters of type UMOEndpointURI
ImmutableMuleEndpoint(String name, UMOEndpointURI endpointUri, UMOConnector connector, UMOTransformer transformer, String type, int createConnector, String endpointEncoding, Map props)
          Default constructor
 

Uses of UMOEndpointURI in org.mule.impl.endpoint
 

Classes in org.mule.impl.endpoint that implement UMOEndpointURI
 class MuleEndpointURI
          MuleEndpointURI is used to determine how a message is sent of received.
 

Methods in org.mule.impl.endpoint that return UMOEndpointURI
 UMOEndpointURI EndpointBuilder.build(URI uri)
           
 UMOEndpointURI AbstractEndpointBuilder.build(URI uri)
           
 

Methods in org.mule.impl.endpoint with parameters of type UMOEndpointURI
 void MuleEndpoint.setEndpointURI(UMOEndpointURI endpointUri)
           
 

Constructors in org.mule.impl.endpoint with parameters of type UMOEndpointURI
MuleEndpoint(String name, UMOEndpointURI endpointUri, UMOConnector connector, UMOTransformer transformer, String type, int createConnector, String endpointEncoding, Map props)
           
MuleEndpointURI(UMOEndpointURI endpointUri)
           
MuleEndpointURI(UMOEndpointURI endpointUri, String filterAddress)
           
 

Uses of UMOEndpointURI in org.mule.impl.internal.admin
 

Methods in org.mule.impl.internal.admin with parameters of type UMOEndpointURI
static UMODescriptor MuleManagerComponent.getDescriptor(UMOConnector connector, UMOEndpointURI endpointUri, WireFormat wireFormat)
           
 

Uses of UMOEndpointURI in org.mule.impl.message
 

Methods in org.mule.impl.message that return UMOEndpointURI
 UMOEndpointURI ExceptionMessage.getEndpoint()
           
 

Constructors in org.mule.impl.message with parameters of type UMOEndpointURI
ExceptionMessage(Object message, Throwable exception, String componentName, UMOEndpointURI endpointUri)
           
 

Uses of UMOEndpointURI in org.mule.providers
 

Methods in org.mule.providers that return UMOEndpointURI
 UMOEndpointURI AbstractMessageReceiver.getEndpointURI()
           
 

Methods in org.mule.providers with parameters of type UMOEndpointURI
 void AbstractServiceEnabledConnector.initialiseFromUrl(UMOEndpointURI endpointUri)
           
 UMOMessage AbstractMessageDispatcher.receive(UMOEndpointURI endpointUri, long timeout)
          Make a specific request to the underlying transport
 

Uses of UMOEndpointURI in org.mule.providers.service
 

Methods in org.mule.providers.service with parameters of type UMOEndpointURI
static UMOEndpoint ConnectorFactory.createEndpoint(UMOEndpointURI uri, String type)
           
static UMOConnector ConnectorFactory.createConnector(UMOEndpointURI url)
          Creates an uninitialied connector from the provided MuleEndpointURI.
static UMOConnector ConnectorFactory.getOrCreateConnectorByProtocol(UMOEndpointURI uri)
           
 

Uses of UMOEndpointURI in org.mule.umo
 

Methods in org.mule.umo that return UMOEndpointURI
 UMOEndpointURI UMOEventContext.getEndpointURI()
          Returns a reference to the Endpoint Uri for this context This is the endpoint on which the event was received
 

Methods in org.mule.umo with parameters of type UMOEndpointURI
 UMOMessage UMOEventContext.sendEvent(UMOMessage message, UMOEndpointURI endpoint)
          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
 FutureMessageResult UMOEventContext.sendEventAsync(UMOMessage message, UMOEndpointURI endpoint, int timeout)
          sends an event request via the configured outbound router for this component.
 void UMOEventContext.dispatchEvent(UMOMessage message, UMOEndpointURI endpoint)
          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
 UMOMessage UMOEventContext.receiveEvent(UMOEndpointURI endpoint, long timeout)
          Requests a synchronous receive of an event on the component
 

Uses of UMOEndpointURI in org.mule.umo.endpoint
 

Methods in org.mule.umo.endpoint that return UMOEndpointURI
 UMOEndpointURI UMOImmutableEndpoint.getEndpointURI()
          This specifes the communication endpointUri.
 

Methods in org.mule.umo.endpoint with parameters of type UMOEndpointURI
 void UMOEndpoint.setEndpointURI(UMOEndpointURI endpointUri)
          This specifes the communication endpointUri.
 

Uses of UMOEndpointURI in org.mule.umo.provider
 

Methods in org.mule.umo.provider that return UMOEndpointURI
 UMOEndpointURI UMOMessageReceiver.getEndpointURI()
          The endpointUri that this receiver listens on
 

Methods in org.mule.umo.provider with parameters of type UMOEndpointURI
 UMOMessage UMOMessageDispatcher.receive(UMOEndpointURI endpointUri, long timeout)
          Deprecated. Use receive(UMOImmutableEndpoint endpoint, long timeout)
 



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