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

Packages that use UMOEndpoint
org.mule Defines the main public API of the MuleManager and support classes such as the MuleServer. 
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.management.stats Jmx statistics support used to monitor messaging status for various Mule components. 
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.multicast IP multicast connectivity for Mule
org.mule.providers.service Provides SPI support for building mule connectors and providers using service descriptors. 
org.mule.providers.servlet Allows the Mule server to easily interact with a servlet engine. 
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.ssl Provides tcp connectivity over Ssl 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 Defines the core routing patterns supported by mule. 
org.mule.routing.inbound Inbound router implementation as described in the Enterprise Integration Patterns book. 
org.mule.routing.outbound Outbound 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.tck.providers Test suite for testing custom provider implementations. 
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.provider Contains the interfaces that comprise a provider implementation. 
org.mule.umo.routing Interfaces that define inbound and outbound routing API. 
org.mule.util Common helper classes for reading/writing files setting bean properties and SPI helpers. 
 

Uses of UMOEndpoint in org.mule
 

Methods in org.mule that return UMOEndpoint
 UMOEndpoint MuleManager.lookupEndpoint(java.lang.String logicalName)
          Getter for a global endpoint. Any endpoints returned from this method will be read-only as they may be shared by other components. To change any details on the endpoint you must clone it first calling it's clone() method
 

Methods in org.mule with parameters of type UMOEndpoint
 void MuleManager.registerEndpoint(UMOEndpoint endpoint)
          Registers a shared/global endpoint with the MuleManager.
 

Uses of UMOEndpoint in org.mule.extras.client
 

Methods in org.mule.extras.client that return UMOEndpoint
protected  UMOEndpoint MuleClient.getDefaultClientProvider(UMODescriptor descriptor, java.lang.Object payload)
           
 

Uses of UMOEndpoint in org.mule.impl
 

Fields in org.mule.impl declared as UMOEndpoint
protected  UMOEndpoint ImmutableMuleDescriptor.inboundEndpoint
           
protected  UMOEndpoint ImmutableMuleDescriptor.outboundEndpoint
           
 

Methods in org.mule.impl that return UMOEndpoint
 UMOEndpoint MuleEvent.getEndpoint()
           
static UMOEndpoint ImmutableMuleEndpoint.createEndpointFromUri(UMOEndpointURI uri, java.lang.String type)
           
static UMOEndpoint ImmutableMuleEndpoint.getEndpointFromUri(java.lang.String uri)
           
static UMOEndpoint ImmutableMuleEndpoint.getEndpointFromUri(UMOEndpointURI uri)
           
static UMOEndpoint ImmutableMuleEndpoint.getOrCreateEndpointForUri(java.lang.String uriIdentifier, java.lang.String type)
           
static UMOEndpoint ImmutableMuleEndpoint.getOrCreateEndpointForUri(UMOEndpointURI uri, java.lang.String type)
           
 UMOEndpoint ImmutableMuleDescriptor.getInboundEndpoint()
          The inbound Provider to use when receiveing an event.
 UMOEndpoint ImmutableMuleDescriptor.getOutboundEndpoint()
          The outbound Provider to use when sending an event.
 UMOEndpoint EndpointList.getReceiveProvider(java.lang.String name)
          Retrieves a receive endpoint with the given name
 UMOEndpoint EndpointList.getSendProvider(java.lang.String name)
          Retrieves a send endpoint with the given name
 UMOEndpoint EndpointList.get(java.lang.String name)
          Returns an endpoint with the given name
 UMOEndpoint DefaultExceptionStrategy.getEndpoint()
           
 

Methods in org.mule.impl with parameters of type UMOEndpoint
 void MuleSession.dispatchEvent(UMOMessage message, UMOEndpoint endpoint)
           
 UMOMessage MuleSession.sendEvent(UMOMessage message, UMOEndpoint endpoint)
           
 UMOMessage MuleSession.receiveEvent(UMOEndpoint endpoint, long timeout)
           
 UMOEvent MuleSession.createOutboundEvent(UMOMessage message, UMOEndpoint endpoint, UMOEvent previousEvent)
           
 UMOMessage MuleEventContext.sendEvent(UMOMessage message, UMOEndpoint 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
 void MuleEventContext.dispatchEvent(UMOMessage message, UMOEndpoint 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 MuleEventContext.receiveEvent(UMOEndpoint endpoint, long timeout)
          Requests a synchronous receive of an event on the component
 void MuleDescriptor.setInboundEndpoint(UMOEndpoint endpoint)
           
 void MuleDescriptor.setOutboundEndpoint(UMOEndpoint endpoint)
           
 void DefaultExceptionStrategy.setEndpoint(UMOEndpoint exceptionEndpoint)
           
 

Constructors in org.mule.impl with parameters of type UMOEndpoint
MuleEvent(UMOMessage message, UMOEndpoint endpoint, UMOComponent component, UMOEvent previousEvent)
           
MuleEvent(UMOMessage message, UMOEndpoint endpoint, UMOSession session, boolean synchronous)
           
MuleEvent(UMOMessage message, UMOEndpoint endpoint, UMOSession session, boolean synchronous, ResponseOutputStream outputStream)
          Contructor.
MuleEvent(UMOMessage message, UMOEndpoint endpoint, UMOSession session, java.lang.String eventId, boolean synchronous)
          Contructor.
 

Uses of UMOEndpoint in org.mule.impl.endpoint
 

Classes in org.mule.impl.endpoint that implement UMOEndpoint
 class MuleEndpoint
          MuleEndpoint describes a Provider in the Mule Server.
 

Uses of UMOEndpoint in org.mule.management.stats
 

Methods in org.mule.management.stats with parameters of type UMOEndpoint
 void RouterStatistics.incrementRoutedMessage(UMOEndpoint endpoint)
          Increment routed message for an endpoint
 

Uses of UMOEndpoint in org.mule.providers
 

Fields in org.mule.providers declared as UMOEndpoint
protected  UMOEndpoint AbstractMessageReceiver.endpoint
          The endpoint descriptor which is associated with this receiver
 

Methods in org.mule.providers that return UMOEndpoint
protected  UMOEndpoint DefaultReplyToHandler.getEndpoint(UMOEvent event, java.lang.String endpointUri)
           
 UMOEndpoint AbstractMessageReceiver.getEndpoint()
           
 

Methods in org.mule.providers with parameters of type UMOEndpoint
 UMOMessageReceiver AbstractServiceEnabledConnector.createReceiver(UMOComponent component, UMOEndpoint endpoint)
           
 void AbstractMessageReceiver.create(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint)
           
 void AbstractMessageReceiver.setEndpoint(UMOEndpoint endpoint)
           
 UMOMessageReceiver AbstractConnector.registerListener(UMOComponent component, UMOEndpoint endpoint)
           
protected  java.lang.Object AbstractConnector.getReceiverKey(UMOComponent component, UMOEndpoint endpoint)
           
 void AbstractConnector.unregisterListener(UMOComponent component, UMOEndpoint endpoint)
           
abstract  UMOMessageReceiver AbstractConnector.createReceiver(UMOComponent component, UMOEndpoint endpoint)
           
 void AbstractConnector.destroyReceiver(UMOMessageReceiver receiver, UMOEndpoint endpoint)
           
 

Constructors in org.mule.providers with parameters of type UMOEndpoint
TransactedPollingMessageReceiver(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint, java.lang.Long frequency)
           
PollingMessageReceiver(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint, java.lang.Long frequency)
           
 

Uses of UMOEndpoint in org.mule.providers.email
 

Methods in org.mule.providers.email with parameters of type UMOEndpoint
 UMOMessageReceiver SmtpConnector.createReceiver(UMOComponent component, UMOEndpoint endpoint)
           
 UMOMessageReceiver Pop3Connector.createReceiver(UMOComponent component, UMOEndpoint endpoint)
           
 UMOMessageReceiver MailConnector.createReceiver(UMOComponent component, UMOEndpoint endpoint)
           
 void MailConnector.destroyReceiver(UMOMessageReceiver receiver, UMOEndpoint endpoint)
           
 

Constructors in org.mule.providers.email with parameters of type UMOEndpoint
MailMessageReceiver(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint, Folder folder, java.lang.Long checkFrequency, java.lang.String backupFolder)
           
 

Uses of UMOEndpoint in org.mule.providers.file
 

Methods in org.mule.providers.file with parameters of type UMOEndpoint
 UMOMessageReceiver FileConnector.createReceiver(UMOComponent component, UMOEndpoint endpoint)
          Registers a listener for a particular directory The following properties can be overriden in the endpoint declaration moveToDirectory filterPatterns filterClass pollingFrequency
 

Constructors in org.mule.providers.file with parameters of type UMOEndpoint
FileMessageReceiver(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint, java.io.File readDir, java.io.File moveDir, java.lang.String moveToPattern, java.lang.Long frequency)
           
 

Uses of UMOEndpoint in org.mule.providers.http
 

Constructors in org.mule.providers.http with parameters of type UMOEndpoint
HttpsMessageReceiver(AbstractConnector connector, UMOComponent component, UMOEndpoint endpoint)
           
HttpMessageReceiver(AbstractConnector connector, UMOComponent component, UMOEndpoint endpoint)
           
 

Uses of UMOEndpoint in org.mule.providers.jdbc
 

Methods in org.mule.providers.jdbc with parameters of type UMOEndpoint
 UMOMessageReceiver JdbcConnector.createReceiver(UMOComponent component, UMOEndpoint endpoint)
           
 java.lang.String[] JdbcConnector.getReadAndAckStatements(UMOEndpointURI endpointUri, UMOEndpoint endpoint)
           
 java.lang.String JdbcConnector.getQuery(UMOEndpoint endpoint, java.lang.String stmt)
           
 java.lang.Object JdbcConnector.getSessionFactory(UMOEndpoint endpoint)
           
 

Constructors in org.mule.providers.jdbc with parameters of type UMOEndpoint
JdbcMessageReceiver(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint, java.lang.String readStmt, java.lang.String ackStmt)
           
 

Uses of UMOEndpoint in org.mule.providers.jms
 

Methods in org.mule.providers.jms with parameters of type UMOEndpoint
protected  java.lang.Object JmsConnector.getReceiverKey(UMOComponent component, UMOEndpoint endpoint)
           
 java.lang.Object JmsConnector.getSessionFactory(UMOEndpoint endpoint)
           
 java.lang.Object JmsConnector.getSession(UMOEndpoint endpoint)
           
 

Constructors in org.mule.providers.jms with parameters of type UMOEndpoint
JmsMessageReceiver(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint)
           
 

Uses of UMOEndpoint in org.mule.providers.multicast
 

Constructors in org.mule.providers.multicast with parameters of type UMOEndpoint
MulticastMessageReceiver(AbstractConnector connector, UMOComponent component, UMOEndpoint endpoint)
           
 

Uses of UMOEndpoint in org.mule.providers.service
 

Methods in org.mule.providers.service that return UMOEndpoint
static UMOEndpoint ConnectorFactory.createEndpoint(UMOEndpointURI uri, java.lang.String type)
           
 

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

Uses of UMOEndpoint in org.mule.providers.servlet
 

Methods in org.mule.providers.servlet that return UMOEndpoint
protected  UMOEndpoint MuleRESTReceiverServlet.getEndpointForURI(HttpServletRequest httpServletRequest)
           
 

Constructors in org.mule.providers.servlet with parameters of type UMOEndpoint
ServletMessageReceiver(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint)
           
 

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

Methods in org.mule.providers.soap.axis with parameters of type UMOEndpoint
protected  java.lang.Object AxisConnector.getReceiverKey(UMOComponent component, UMOEndpoint endpoint)
           
 UMOMessageReceiver AxisConnector.createReceiver(UMOComponent component, UMOEndpoint endpoint)
           
 

Constructors in org.mule.providers.soap.axis with parameters of type UMOEndpoint
AxisMessageReceiver(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint)
           
 

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

Methods in org.mule.providers.soap.glue with parameters of type UMOEndpoint
 UMOMessageReceiver GlueConnector.registerListener(UMOComponent component, UMOEndpoint endpoint)
           
 

Constructors in org.mule.providers.soap.glue with parameters of type UMOEndpoint
GlueMessageReceiver(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint, boolean createServer)
           
 

Uses of UMOEndpoint in org.mule.providers.ssl
 

Constructors in org.mule.providers.ssl with parameters of type UMOEndpoint
SslMessageReceiver(AbstractConnector connector, UMOComponent component, UMOEndpoint endpoint)
           
 

Uses of UMOEndpoint in org.mule.providers.stream
 

Methods in org.mule.providers.stream with parameters of type UMOEndpoint
 UMOMessageReceiver SystemStreamConnector.registerListener(UMOComponent component, UMOEndpoint endpoint)
           
 UMOMessageReceiver StreamConnector.createReceiver(UMOComponent component, UMOEndpoint endpoint)
           
 

Constructors in org.mule.providers.stream with parameters of type UMOEndpoint
StreamMessageReceiver(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint, java.io.InputStream stream, java.lang.Long checkFrequency)
           
 

Uses of UMOEndpoint in org.mule.providers.tcp
 

Constructors in org.mule.providers.tcp with parameters of type UMOEndpoint
TcpMessageReceiver(AbstractConnector connector, UMOComponent component, UMOEndpoint endpoint)
           
 

Uses of UMOEndpoint in org.mule.providers.udp
 

Constructors in org.mule.providers.udp with parameters of type UMOEndpoint
UdpMessageReceiver(AbstractConnector connector, UMOComponent component, UMOEndpoint endpoint)
           
 

Uses of UMOEndpoint in org.mule.providers.vm
 

Methods in org.mule.providers.vm with parameters of type UMOEndpoint
 UMOMessageReceiver VMConnector.createReceiver(UMOComponent component, UMOEndpoint endpoint)
           
 

Constructors in org.mule.providers.vm with parameters of type UMOEndpoint
VMMessageReceiver(UMOConnector connector, UMOComponent component, UMOEndpoint endpoint, BoundedPersistentQueue queue)
           
 

Uses of UMOEndpoint in org.mule.providers.xmpp
 

Constructors in org.mule.providers.xmpp with parameters of type UMOEndpoint
XmppMessageReceiver(AbstractConnector connector, UMOComponent component, UMOEndpoint endpoint)
           
 

Uses of UMOEndpoint in org.mule.routing
 

Fields in org.mule.routing declared as UMOEndpoint
protected  UMOEndpoint AbstractCatchAllStrategy.endpoint
           
 

Methods in org.mule.routing that return UMOEndpoint
 UMOEndpoint LoggingCatchAllStrategy.getEndpoint()
           
 UMOEndpoint ComponentCatchAllStrategy.getEndpoint()
           
 UMOEndpoint AbstractCatchAllStrategy.getEndpoint()
           
 

Methods in org.mule.routing with parameters of type UMOEndpoint
 void LoggingCatchAllStrategy.setEndpoint(UMOEndpoint endpoint)
           
 void ComponentCatchAllStrategy.setEndpoint(UMOEndpoint endpoint)
           
 void AbstractCatchAllStrategy.setEndpoint(UMOEndpoint endpoint)
           
 

Uses of UMOEndpoint in org.mule.routing.inbound
 

Methods in org.mule.routing.inbound that return UMOEndpoint
 UMOEndpoint InboundMessageRouter.getEndpoint(java.lang.String name)
           
 

Methods in org.mule.routing.inbound with parameters of type UMOEndpoint
 void InboundMessageRouter.addEndpoint(UMOEndpoint endpoint)
           
 boolean InboundMessageRouter.removeEndpoint(UMOEndpoint endpoint)
           
 

Uses of UMOEndpoint in org.mule.routing.outbound
 

Methods in org.mule.routing.outbound that return UMOEndpoint
 UMOEndpoint[] OutboundMessageRouter.getEndpointsForMessage(UMOMessage message)
          A helper method for finding out which endpoints a message would be routed to without actually routing the the message
protected  UMOEndpoint AbstractRecipientList.getRecipientEndpoint(UMOMessage message, java.lang.String recipient)
           
 

Methods in org.mule.routing.outbound with parameters of type UMOEndpoint
 void OutboundPassThroughRouter.addEndpoint(UMOEndpoint endpoint)
           
protected  UMOMessage FilteringListMessageSplitter.getMessagePart(UMOMessage message, UMOEndpoint endpoint)
          Retrieves a specific message part for the given endpoint.
 void AbstractOutboundRouter.dispatch(UMOSession session, UMOMessage message, UMOEndpoint endpoint)
           
 UMOMessage AbstractOutboundRouter.send(UMOSession session, UMOMessage message, UMOEndpoint endpoint)
           
protected  void AbstractOutboundRouter.setMessageProperties(UMOSession session, UMOMessage message, UMOEndpoint endpoint)
           
 void AbstractOutboundRouter.addEndpoint(UMOEndpoint endpoint)
           
 boolean AbstractOutboundRouter.removeEndpoint(UMOEndpoint endpoint)
           
protected abstract  UMOMessage AbstractMessageSplitter.getMessagePart(UMOMessage message, UMOEndpoint endpoint)
          Retrieves a specific message part for the given endpoint.
 

Uses of UMOEndpoint in org.mule.routing.response
 

Methods in org.mule.routing.response that return UMOEndpoint
 UMOEndpoint ResponseMessageRouter.getEndpoint(java.lang.String name)
           
 

Methods in org.mule.routing.response with parameters of type UMOEndpoint
 void ResponseMessageRouter.addEndpoint(UMOEndpoint endpoint)
           
 boolean ResponseMessageRouter.removeEndpoint(UMOEndpoint endpoint)
           
 

Uses of UMOEndpoint in org.mule.tck
 

Methods in org.mule.tck that return UMOEndpoint
static UMOEndpoint AbstractMuleTestCase.getTestEndpoint(java.lang.String name, java.lang.String type)
           
 

Methods in org.mule.tck with parameters of type UMOEndpoint
static UMOEvent AbstractMuleTestCase.getTestEvent(java.lang.Object data, UMOEndpoint endpoint)
           
static UMOEvent AbstractMuleTestCase.getTestEvent(java.lang.Object data, MuleDescriptor descriptor, UMOEndpoint endpoint)
           
 

Uses of UMOEndpoint in org.mule.tck.providers
 

Fields in org.mule.tck.providers declared as UMOEndpoint
protected  UMOEndpoint AbstractMessageReceiverTestCase.endpoint
           
 

Uses of UMOEndpoint in org.mule.umo
 

Methods in org.mule.umo that return UMOEndpoint
 UMOEndpoint UMOManager.lookupEndpoint(java.lang.String logicalName)
          Getter for a global endpoint.
 UMOEndpoint UMOImmutableDescriptor.getInboundEndpoint()
          The inbound Provider to use when receiveing an event.
 UMOEndpoint UMOImmutableDescriptor.getOutboundEndpoint()
          The outbound Provider to use when sending an event.
 UMOEndpoint UMOExceptionStrategy.getEndpoint()
           
 UMOEndpoint UMOEvent.getEndpoint()
          Gets the endpoint associated with this event
 

Methods in org.mule.umo with parameters of type UMOEndpoint
 UMOMessage UMOSession.sendEvent(UMOMessage message, UMOEndpoint 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
 void UMOSession.dispatchEvent(UMOMessage message, UMOEndpoint 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 UMOSession.receiveEvent(UMOEndpoint endpoint, long timeout)
          Requests a synchronous receive of an event on the component
 UMOEvent UMOSession.createOutboundEvent(UMOMessage message, UMOEndpoint endpoint, UMOEvent previousEvent)
          Creates an outbound event for this session
 void UMOManager.registerEndpoint(UMOEndpoint endpoint)
          Registers a shared/global endpoint with the MuleManager.
 void UMOExceptionStrategy.setEndpoint(UMOEndpoint exceptionEndpoint)
           
 UMOMessage UMOEventContext.sendEvent(UMOMessage message, UMOEndpoint 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
 void UMOEventContext.dispatchEvent(UMOMessage message, UMOEndpoint 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(UMOEndpoint endpoint, long timeout)
          Requests a synchronous receive of an event on the component
 void UMODescriptor.setInboundEndpoint(UMOEndpoint endpoint)
          The inbound endpointUri to use when receiveing an event.
 void UMODescriptor.setOutboundEndpoint(UMOEndpoint endpoint)
          The outbound Provider to use when sending an event.
 

Uses of UMOEndpoint in org.mule.umo.provider
 

Methods in org.mule.umo.provider that return UMOEndpoint
 UMOEndpoint UMOMessageReceiver.getEndpoint()
           
 

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

Uses of UMOEndpoint in org.mule.umo.routing
 

Methods in org.mule.umo.routing that return UMOEndpoint
 UMOEndpoint UMORouterCatchAllStrategy.getEndpoint()
           
 UMOEndpoint UMOResponseMessageRouter.getEndpoint(java.lang.String name)
           
 UMOEndpoint[] UMOOutboundMessageRouter.getEndpointsForMessage(UMOMessage message)
          A helper method for finding out which endpoints a message would be routed to without actually routing the the message
 UMOEndpoint UMOInboundMessageRouter.getEndpoint(java.lang.String name)
           
 

Methods in org.mule.umo.routing with parameters of type UMOEndpoint
 void UMORouterCatchAllStrategy.setEndpoint(UMOEndpoint endpoint)
           
 void UMOResponseMessageRouter.addEndpoint(UMOEndpoint endpoint)
           
 boolean UMOResponseMessageRouter.removeEndpoint(UMOEndpoint endpoint)
           
 void UMOOutboundRouter.addEndpoint(UMOEndpoint endpoint)
           
 boolean UMOOutboundRouter.removeEndpoint(UMOEndpoint endpoint)
           
 void UMOInboundMessageRouter.addEndpoint(UMOEndpoint endpoint)
           
 boolean UMOInboundMessageRouter.removeEndpoint(UMOEndpoint endpoint)
           
 

Uses of UMOEndpoint in org.mule.util
 

Methods in org.mule.util that return UMOEndpoint
static UMOEndpoint MuleObjectHelper.getEndpointByProtocol(java.lang.String protocol)
           
static UMOEndpoint MuleObjectHelper.getEndpointByEndpointUri(java.lang.String endpointUri, boolean wildcardMatch)
           
 



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