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.config.i18n Internationalisation support for Mule messages and exception messages. 
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.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.file.i18n   
org.mule.providers.ftp   
org.mule.providers.service Provides SPI support for building mule connectors and providers using service descriptors. 
org.mule.providers.soap.axis Provides an Axis soap transport for Mule
org.mule.providers.soap.xfire   
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.ra A Resource Adapter implementation that allows a Mule instance to be deployed to a J2ee application server and exposes Mule services via the JCA connector architecture. 
org.mule.tck.functional Helper classes and interfaces used by Mule fnctional tests. 
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.config.i18n
 

Methods in org.mule.config.i18n with parameters of type UMOEndpointURI
static Message CoreMessages.listenerAlreadyRegistered(UMOEndpointURI endpointUri)
           
static Message CoreMessages.failedToCreateConnectorFromUri(UMOEndpointURI uri)
           
static Message CoreMessages.authDeniedOnEndpoint(UMOEndpointURI endpointURI)
           
 

Uses of UMOEndpointURI in org.mule.extras.client
 

Methods in org.mule.extras.client with parameters of type UMOEndpointURI
 void MuleClient.registerComponent(Object component, String name, UMOEndpointURI listenerEndpoint)
          Registers a java object as a Umo pcomponent that listens for events on the given url.
 

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 MuleEventContext.getEndpointURI()
           
 UMOEndpointURI ImmutableMuleEndpoint.getEndpointURI()
           
 

Methods in org.mule.impl with parameters of type UMOEndpointURI
 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
static UMOEndpoint ImmutableMuleEndpoint.createEndpointFromUri(UMOEndpointURI uri, String type)
           
static UMOEndpoint ImmutableMuleEndpoint.getEndpointFromUri(UMOEndpointURI uri)
           
static UMOEndpoint ImmutableMuleEndpoint.getOrCreateEndpointForUri(UMOEndpointURI uri, String type)
           
 

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)
           
 

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 AbstractEndpointBuilder.build(URI uri)
           
 UMOEndpointURI EndpointBuilder.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
MuleEndpointURI(UMOEndpointURI endpointUri)
           
MuleEndpointURI(UMOEndpointURI endpointUri, String filterAddress)
           
MuleEndpoint(String name, UMOEndpointURI endpointUri, UMOConnector connector, UMOTransformer transformer, String type, int createConnector, String endpointEncoding, Map props)
           
 

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
 UMOMessage AbstractConnector.receive(UMOEndpointURI endpointUri, long timeout)
          Make a specific request to the underlying transport
 void AbstractConnector.initialiseFromUrl(UMOEndpointURI endpointUri)
          When this connector is created via the TransportFactory the endpoint used to determine the connector type is passed to this method so that any properties set on the endpoint that can be used to initialise the connector are made available.
 

Uses of UMOEndpointURI in org.mule.providers.file.i18n
 

Methods in org.mule.providers.file.i18n with parameters of type UMOEndpointURI
static Message FileMessages.invalidFileFilter(UMOEndpointURI endpointURI)
           
 

Uses of UMOEndpointURI in org.mule.providers.ftp
 

Methods in org.mule.providers.ftp with parameters of type UMOEndpointURI
 org.apache.commons.net.ftp.FTPClient FtpConnector.getFtp(UMOEndpointURI uri)
           
 void FtpConnector.releaseFtp(UMOEndpointURI uri, org.apache.commons.net.ftp.FTPClient client)
           
 void FtpConnector.destroyFtp(UMOEndpointURI uri, org.apache.commons.net.ftp.FTPClient client)
           
protected  ObjectPool FtpConnector.getFtpPool(UMOEndpointURI uri)
           
 

Constructors in org.mule.providers.ftp with parameters of type UMOEndpointURI
FtpConnectionFactory(UMOEndpointURI uri)
           
 

Uses of UMOEndpointURI in org.mule.providers.service
 

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

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

Methods in org.mule.providers.soap.axis with parameters of type UMOEndpointURI
protected  void AxisMessageDispatcher.setSoapAction(UMOEvent event, UMOEndpointURI endpointUri, org.apache.axis.client.Call call)
           
protected  void AxisMessageDispatcher.setUserCredentials(UMOEndpointURI endpointUri, org.apache.axis.client.Call call)
           
protected  void AxisServiceComponent.processMethodRequest(org.apache.axis.MessageContext msgContext, UMOEventContext context, WriterMessageAdapter response, UMOEndpointURI endpointUri)
           
protected  String AxisServiceComponent.getServiceName(UMOEventContext context, UMOEndpointURI endpointUri)
           
protected  void AxisConnector.unregisterReceiverWithMuleService(UMOMessageReceiver receiver, UMOEndpointURI ep)
           
protected  void AxisConnector.registerReceiverWithMuleService(UMOMessageReceiver receiver, UMOEndpointURI ep)
           
 

Uses of UMOEndpointURI in org.mule.providers.soap.xfire
 

Methods in org.mule.providers.soap.xfire with parameters of type UMOEndpointURI
protected  void XFireConnector.registerReceiverWithMuleService(UMOMessageReceiver receiver, UMOEndpointURI ep)
           
 

Uses of UMOEndpointURI in org.mule.providers.vm
 

Methods in org.mule.providers.vm with parameters of type UMOEndpointURI
protected  UMOMessageReceiver VMConnector.getReceiverByEndpoint(UMOEndpointURI endpointUri)
           
 

Uses of UMOEndpointURI in org.mule.providers.xmpp
 

Methods in org.mule.providers.xmpp with parameters of type UMOEndpointURI
 org.jivesoftware.smack.XMPPConnection XmppConnector.createXmppConnection(UMOEndpointURI endpointURI)
           
 

Uses of UMOEndpointURI in org.mule.ra
 

Methods in org.mule.ra with parameters of type UMOEndpointURI
protected  UMOEvent DefaultMuleConnection.getEvent(UMOMessage message, UMOEndpointURI uri, boolean synchronous)
          Packages a mule event for the current request
 

Uses of UMOEndpointURI in org.mule.tck.functional
 

Methods in org.mule.tck.functional that return UMOEndpointURI
protected abstract  UMOEndpointURI AbstractProviderFunctionalTestCase.getInDest()
          Deprecated.  
protected abstract  UMOEndpointURI AbstractProviderFunctionalTestCase.getOutDest()
          Deprecated.  
 

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 UMOConnector.receive(UMOEndpointURI endpointUri, long timeout)
          Deprecated. Use receive(UMOImmutableEndpoint endpoint, long timeout)
 



Copyright © 2003-2008 MuleSource, Inc.. All Rights Reserved.