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

Packages that use UMOImmutableEndpoint
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.notifications Internal server notificationicationicationicationicationicationicationicationicationicationicationicationicationicationicationicationicationicationicationicationicationication types fired via the MuleManager. 
org.mule.impl.model   
org.mule.impl.security Core security implementation including the mule security manager and encryption types 
org.mule.impl.space   
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.dq   
org.mule.providers.ejb   
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.ftp   
org.mule.providers.gs Allows Mule to send and receive events the GigaSpaces Jini JavaSpace implementation. 
org.mule.providers.gs.space   
org.mule.providers.http Provides http transport including proxy support. 
org.mule.providers.jbi Allows JBI components to interact with Mule. 
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.oracle.jms   
org.mule.providers.quartz   
org.mule.providers.rmi   
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.axis.wsdl   
org.mule.providers.soap.glue Provides an Glue soap transport for Mule
org.mule.providers.soap.xfire   
org.mule.providers.soap.xfire.wsdl   
org.mule.providers.space Allows Mule to send and receive events via the Mule Space API. 
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.tck Provides a suite of abstract test cases that can be used to test you custom Mule extensions. 
org.mule.tck.testmodels.mule   
org.mule.transformers Provides the default transformer base implementations for Mule including compression and encryption support. 
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. 
org.mule.umo.routing Interfaces that define inbound and outbound routing API. 
org.mule.umo.security Security API for authentication and authorisation. 
org.mule.umo.space   
org.mule.umo.transformer Contains the interfaces for transformers and exceptions for the UMO Transformer API. 
org.mule.util Common helper classes for reading/writing files setting bean properties and SPI helpers. 
 

Uses of UMOImmutableEndpoint in org.mule.impl
 

Classes in org.mule.impl that implement UMOImmutableEndpoint
 class ImmutableMuleEndpoint
          ImmutableMuleEndpoint describes a Provider in the Mule Server.
 

Methods in org.mule.impl that return UMOImmutableEndpoint
 UMOImmutableEndpoint MuleEvent.getEndpoint()
           
 

Methods in org.mule.impl with parameters of type UMOImmutableEndpoint
protected  void ImmutableMuleEndpoint.initFromDescriptor(UMOImmutableEndpoint source)
           
 void MuleSession.dispatchEvent(UMOMessage message, UMOImmutableEndpoint endpoint)
           
 UMOMessage MuleSession.sendEvent(UMOMessage message, UMOImmutableEndpoint endpoint)
           
 UMOMessage MuleSession.receiveEvent(UMOImmutableEndpoint endpoint, long timeout)
           
 UMOEvent MuleSession.createOutboundEvent(UMOMessage message, UMOImmutableEndpoint endpoint, UMOEvent previousEvent)
           
protected  void DefaultComponentExceptionStrategy.routeException(UMOMessage message, UMOImmutableEndpoint failedEndpoint, Throwable t)
           
 void DefaultExceptionStrategy.handleRoutingException(UMOMessage message, UMOImmutableEndpoint endpoint, Throwable t)
           
protected  void AbstractExceptionListener.routeException(UMOMessage message, UMOImmutableEndpoint failedEndpoint, Throwable t)
          Routes the current exception to an error endpoint such as a Dead Letter Queue (jms) This method is only invoked if there is a UMOMessage available to dispatch.
abstract  void AbstractExceptionListener.handleRoutingException(UMOMessage message, UMOImmutableEndpoint endpoint, Throwable e)
          A routing exception is thrown when an excpetion occurs during normal message processing A RoutingException holds a reference to the current message and te endpoint being routing to or from when the error occurred.
 

Constructors in org.mule.impl with parameters of type UMOImmutableEndpoint
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.
MuleEvent(UMOMessage message, UMOImmutableEndpoint endpoint, UMOSession session, boolean synchronous)
           
MuleEvent(UMOMessage message, UMOImmutableEndpoint endpoint, UMOSession session, boolean synchronous, ResponseOutputStream outputStream)
          Contructor.
MuleEvent(UMOMessage message, UMOImmutableEndpoint endpoint, UMOSession session, String eventId, boolean synchronous)
          Contructor.
ImmutableMuleEndpoint(UMOImmutableEndpoint source)
           
 

Uses of UMOImmutableEndpoint in org.mule.impl.endpoint
 

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

Constructors in org.mule.impl.endpoint with parameters of type UMOImmutableEndpoint
MuleEndpoint(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.impl.internal.notifications
 

Methods in org.mule.impl.internal.notifications that return UMOImmutableEndpoint
 UMOImmutableEndpoint MessageNotification.getEndpoint()
           
 

Constructors in org.mule.impl.internal.notifications with parameters of type UMOImmutableEndpoint
MessageNotification(UMOMessage resource, UMOImmutableEndpoint endpoint, String identifier, int action)
           
 

Uses of UMOImmutableEndpoint in org.mule.impl.model
 

Methods in org.mule.impl.model with parameters of type UMOImmutableEndpoint
protected  ReplyToHandler DefaultMuleProxy.getReplyToHandler(UMOMessage message, UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.impl.security
 

Methods in org.mule.impl.security that return UMOImmutableEndpoint
 UMOImmutableEndpoint AbstractEndpointSecurityFilter.getEndpoint()
           
 

Methods in org.mule.impl.security with parameters of type UMOImmutableEndpoint
 void AbstractEndpointSecurityFilter.setEndpoint(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.impl.space
 

Methods in org.mule.impl.space with parameters of type UMOImmutableEndpoint
 UMOSpace DefaultSpaceFactory.create(UMOImmutableEndpoint endpoint)
          Creates a space based on the endpoint URI and can use additional properties, transaction info, security info and filters associated with the endpoint
 

Uses of UMOImmutableEndpoint in org.mule.management.stats
 

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

Uses of UMOImmutableEndpoint in org.mule.providers
 

Fields in org.mule.providers declared as UMOImmutableEndpoint
protected  UMOImmutableEndpoint AbstractMessageDispatcher.endpoint
           
 

Methods in org.mule.providers with parameters of type UMOImmutableEndpoint
 UMOMessageDispatcher AbstractConnector.getDispatcher(UMOImmutableEndpoint endpoint)
           
 UMOMessageDispatcher AbstractConnector.getDispatcher(UMOImmutableEndpoint endpoint, boolean createDispatcherIfNotExists)
           
protected  UMOMessageDispatcher AbstractConnector.createDispatcher(UMOImmutableEndpoint endpoint)
           
 UMOMessage AbstractMessageDispatcher.receive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
 OutputStream AbstractMessageDispatcher.getOutputStream(UMOImmutableEndpoint endpoint, UMOMessage message)
          Well get the output stream (if any) for this type of transport.
protected  String AbstractMessageDispatcher.getConnectEventId(UMOImmutableEndpoint endpoint)
           
protected abstract  void AbstractMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
protected abstract  UMOMessage AbstractMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
 

Constructors in org.mule.providers with parameters of type UMOImmutableEndpoint
AbstractMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.dq
 

Methods in org.mule.providers.dq with parameters of type UMOImmutableEndpoint
protected  UMOMessage DQMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
protected  void DQMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
 UMOMessageDispatcher DQMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.dq with parameters of type UMOImmutableEndpoint
DQMessageDispatcher(UMOImmutableEndpoint endpoint)
          Constructor
 

Uses of UMOImmutableEndpoint in org.mule.providers.ejb
 

Methods in org.mule.providers.ejb with parameters of type UMOImmutableEndpoint
 UMOMessageDispatcher EjbMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 Remote EjbConnector.getRemoteObject(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.ejb with parameters of type UMOImmutableEndpoint
EjbMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.email
 

Methods in org.mule.providers.email with parameters of type UMOImmutableEndpoint
protected  void SmtpMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
protected  UMOMessage SmtpMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
 UMOMessageDispatcher Pop3MessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 UMOMessageDispatcher SmtpMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
protected  void Pop3MessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
protected  UMOMessage Pop3MessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport Endpoint can be in the form of pop3://username:password@pop3.lotsofmail.org
 

Constructors in org.mule.providers.email with parameters of type UMOImmutableEndpoint
SmtpMessageDispatcher(UMOImmutableEndpoint endpoint)
           
Pop3MessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.file
 

Methods in org.mule.providers.file with parameters of type UMOImmutableEndpoint
 UMOMessageDispatcher FileMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 OutputStream FileMessageDispatcher.getOutputStream(UMOImmutableEndpoint endpoint, UMOMessage message)
          Well get the output stream (if any) for this type of transport.
protected  UMOMessage FileMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Will attempt to do a receive from a directory, if the endpointUri resolves to a file name the file will be returned, otherwise the first file in the directory according to the filename filter configured on the connector.
protected  void FileMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.file with parameters of type UMOImmutableEndpoint
FileMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.ftp
 

Methods in org.mule.providers.ftp with parameters of type UMOImmutableEndpoint
 OutputStream FtpMessageDispatcher.getOutputStream(UMOImmutableEndpoint endpoint, UMOMessage message)
          Well get the output stream (if any) for this type of transport.
protected  void FtpMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
protected  UMOMessage FtpMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
 void FtpConnector.enterActiveOrPassiveMode(FTPClient client, UMOImmutableEndpoint endpoint)
          Passive mode is OFF by default.
 void FtpConnector.setupFileType(FTPClient client, UMOImmutableEndpoint endpoint)
          Transfer type is BINARY by default.
 UMOMessageDispatcher FtpMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.ftp with parameters of type UMOImmutableEndpoint
FtpMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.gs
 

Methods in org.mule.providers.gs with parameters of type UMOImmutableEndpoint
protected  String GSConnector.getSpaceKey(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.gs.space
 

Methods in org.mule.providers.gs.space with parameters of type UMOImmutableEndpoint
 UMOSpace GSSpaceFactory.create(UMOImmutableEndpoint endpoint)
          Creates a space based on the endpoint URI and can use additional properties, transaction info, security info and filters associated with the endpoint
 

Uses of UMOImmutableEndpoint in org.mule.providers.http
 

Methods in org.mule.providers.http with parameters of type UMOImmutableEndpoint
 UMOMessageDispatcher HttpClientMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
protected  void HttpClientMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
protected  UMOMessage HttpClientMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
 

Constructors in org.mule.providers.http with parameters of type UMOImmutableEndpoint
HttpClientMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.jbi
 

Methods in org.mule.providers.jbi with parameters of type UMOImmutableEndpoint
protected  UMOMessage JbiMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
protected  void JbiMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
 UMOMessageDispatcher JbiMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.jbi with parameters of type UMOImmutableEndpoint
JbiMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.jdbc
 

Methods in org.mule.providers.jdbc with parameters of type UMOImmutableEndpoint
 UMOMessageDispatcher JdbcMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 String[] JdbcConnector.getReadAndAckStatements(UMOImmutableEndpoint endpoint)
           
 String JdbcConnector.getQuery(UMOImmutableEndpoint endpoint, String stmt)
           
 Object[] JdbcConnector.getParams(UMOImmutableEndpoint endpoint, List paramNames, Object message)
           
protected  UMOMessage JdbcMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
protected  void JdbcMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.jdbc with parameters of type UMOImmutableEndpoint
JdbcMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.jms
 

Methods in org.mule.providers.jms with parameters of type UMOImmutableEndpoint
 Session JmsConnector.getSession(UMOImmutableEndpoint endpoint)
           
protected  void JmsMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
protected  UMOMessage JmsMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
 UMOMessageDispatcher JmsMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.jms with parameters of type UMOImmutableEndpoint
JmsMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.multicast
 

Methods in org.mule.providers.multicast with parameters of type UMOImmutableEndpoint
 UMOMessageDispatcher MulticastMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.multicast with parameters of type UMOImmutableEndpoint
MulticastMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.oracle.jms
 

Methods in org.mule.providers.oracle.jms with parameters of type UMOImmutableEndpoint
 UMOMessageDispatcher OracleJmsMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
protected  UMOMessage OracleJmsMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport Save a copy of the endpoint's properties within the OracleJmsSupport object.
 

Constructors in org.mule.providers.oracle.jms with parameters of type UMOImmutableEndpoint
OracleJmsMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.quartz
 

Methods in org.mule.providers.quartz with parameters of type UMOImmutableEndpoint
protected  void QuartzMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
protected  UMOMessage QuartzMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
 UMOMessageDispatcher QuartzMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.quartz with parameters of type UMOImmutableEndpoint
QuartzMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.rmi
 

Methods in org.mule.providers.rmi with parameters of type UMOImmutableEndpoint
protected  void RmiMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
protected  UMOMessage RmiMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
protected  Object RmiConnector.getRemoteRef(UMOImmutableEndpoint endpoint)
           
 Remote RmiConnector.getRemoteObject(UMOImmutableEndpoint endpoint)
           
 UMOMessageDispatcher RmiMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.rmi with parameters of type UMOImmutableEndpoint
RmiMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.service
 

Methods in org.mule.providers.service with parameters of type UMOImmutableEndpoint
static UMOConnector ConnectorFactory.getOrCreateConnectorByProtocol(UMOImmutableEndpoint endpoint)
           
 

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

Methods in org.mule.providers.soap.axis with parameters of type UMOImmutableEndpoint
protected  void AxisMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
protected  EngineConfiguration AxisMessageDispatcher.getClientConfig(UMOImmutableEndpoint endpoint)
           
protected  Service AxisMessageDispatcher.createService(UMOImmutableEndpoint endpoint)
           
protected  UMOMessage AxisMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
 UMOMessageDispatcher AxisMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.soap.axis with parameters of type UMOImmutableEndpoint
AxisMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.soap.axis.wsdl
 

Methods in org.mule.providers.soap.axis.wsdl with parameters of type UMOImmutableEndpoint
 UMOMessageDispatcher AxisWsdlMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.soap.axis.wsdl with parameters of type UMOImmutableEndpoint
AxisWsdlMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

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

Methods in org.mule.providers.soap.glue with parameters of type UMOImmutableEndpoint
protected  void GlueMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
protected  UMOMessage GlueMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
 UMOMessageDispatcher GlueMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.soap.glue with parameters of type UMOImmutableEndpoint
GlueMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

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

Methods in org.mule.providers.soap.xfire that return UMOImmutableEndpoint
 UMOImmutableEndpoint MuleInvoker.getEndpoint()
           
 

Methods in org.mule.providers.soap.xfire with parameters of type UMOImmutableEndpoint
 UMOMessageDispatcher XFireMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
protected  void XFireMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
protected  UMOMessage XFireMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
protected  String XFireMessageDispatcher.getServiceName(UMOImmutableEndpoint endpoint)
          Get the service that is mapped to the specified request.
 

Constructors in org.mule.providers.soap.xfire with parameters of type UMOImmutableEndpoint
XFireMessageDispatcher(UMOImmutableEndpoint endpoint)
           
XFireClientPoolFactory(UMOImmutableEndpoint endpoint, Service service, XFire xfire)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.soap.xfire.wsdl
 

Methods in org.mule.providers.soap.xfire.wsdl with parameters of type UMOImmutableEndpoint
protected  void XFireWsdlMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
 UMOMessageDispatcher XFireWsdlMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.soap.xfire.wsdl with parameters of type UMOImmutableEndpoint
XFireWsdlMessageDispatcher(UMOImmutableEndpoint endpoint)
           
XFireWsdlClientPoolFactory(UMOImmutableEndpoint endpoint, Service service, XFire xfire)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.space
 

Methods in org.mule.providers.space with parameters of type UMOImmutableEndpoint
 UMOMessageDispatcher SpaceMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 UMOSpace SpaceConnector.getSpace(UMOImmutableEndpoint endpoint)
          Will look up a space based on the URI.
protected  String SpaceConnector.getSpaceKey(UMOImmutableEndpoint endpoint)
           
protected  void SpaceMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
protected  UMOMessage SpaceMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
 

Constructors in org.mule.providers.space with parameters of type UMOImmutableEndpoint
SpaceMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.ssl
 

Methods in org.mule.providers.ssl with parameters of type UMOImmutableEndpoint
 UMOMessageDispatcher SslMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.ssl with parameters of type UMOImmutableEndpoint
SslMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.stream
 

Methods in org.mule.providers.stream with parameters of type UMOImmutableEndpoint
 UMOMessageDispatcher StreamMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
protected  UMOMessage StreamMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
protected  void StreamMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.stream with parameters of type UMOImmutableEndpoint
StreamMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.tcp
 

Methods in org.mule.providers.tcp with parameters of type UMOImmutableEndpoint
protected  UMOMessage TcpMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
 OutputStream TcpMessageDispatcher.getOutputStream(UMOImmutableEndpoint endpoint, UMOMessage message)
          Well get the output stream (if any) for this type of transport.
protected  void TcpMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
 UMOMessageDispatcher TcpMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.tcp with parameters of type UMOImmutableEndpoint
TcpMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.udp
 

Methods in org.mule.providers.udp with parameters of type UMOImmutableEndpoint
protected  void UdpMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
protected  UMOMessage UdpMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
 UMOMessageDispatcher UdpMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.udp with parameters of type UMOImmutableEndpoint
UdpMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.vm
 

Methods in org.mule.providers.vm with parameters of type UMOImmutableEndpoint
 UMOMessageDispatcher VMMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
protected  UMOMessage VMMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
protected  void VMMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.vm with parameters of type UMOImmutableEndpoint
VMMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.providers.xmpp
 

Methods in org.mule.providers.xmpp with parameters of type UMOImmutableEndpoint
protected  void XmppMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
protected  UMOMessage XmppMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
 UMOMessageDispatcher XmppMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.providers.xmpp with parameters of type UMOImmutableEndpoint
XmppMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.routing
 

Constructors in org.mule.routing with parameters of type UMOImmutableEndpoint
AggregationException(EventGroup eventGroup, UMOImmutableEndpoint endpoint)
           
AggregationException(EventGroup eventGroup, UMOImmutableEndpoint endpoint, Throwable cause)
           
AggregationException(Message message, EventGroup eventGroup, UMOImmutableEndpoint endpoint)
           
AggregationException(Message message, EventGroup eventGroup, UMOImmutableEndpoint endpoint, Throwable cause)
           
 

Uses of UMOImmutableEndpoint in org.mule.tck
 

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

Uses of UMOImmutableEndpoint in org.mule.tck.testmodels.mule
 

Methods in org.mule.tck.testmodels.mule with parameters of type UMOImmutableEndpoint
 UMOMessageDispatcher TestConnector.getDispatcher(UMOImmutableEndpoint endpoint)
          The connector can pool dispatchers based on their endpointUri or can ingnore the endpointUri altogether and use a ThreadLocal or always create new.
 UMOMessage TestMessageDispatcher.doReceive(UMOImmutableEndpoint endpoint, long timeout)
           
protected  void TestMessageDispatcher.doConnect(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.tck.testmodels.mule with parameters of type UMOImmutableEndpoint
TestMessageDispatcher(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.transformers
 

Fields in org.mule.transformers declared as UMOImmutableEndpoint
protected  UMOImmutableEndpoint AbstractTransformer.endpoint
           
 

Methods in org.mule.transformers that return UMOImmutableEndpoint
 UMOImmutableEndpoint AbstractTransformer.getEndpoint()
           
 

Methods in org.mule.transformers with parameters of type UMOImmutableEndpoint
 void AbstractTransformer.setEndpoint(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.umo
 

Methods in org.mule.umo that return UMOImmutableEndpoint
 UMOImmutableEndpoint UMOEvent.getEndpoint()
          Gets the endpoint associated with this event
 

Methods in org.mule.umo with parameters of type UMOImmutableEndpoint
 UMOMessage UMOSession.sendEvent(UMOMessage message, UMOImmutableEndpoint 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, UMOImmutableEndpoint 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(UMOImmutableEndpoint endpoint, long timeout)
          Requests a synchronous receive of an event on the component
 UMOEvent UMOSession.createOutboundEvent(UMOMessage message, UMOImmutableEndpoint endpoint, UMOEvent previousEvent)
          Creates an outbound event for this session
 

Uses of UMOImmutableEndpoint in org.mule.umo.endpoint
 

Subinterfaces of UMOImmutableEndpoint in org.mule.umo.endpoint
 interface UMOEndpoint
          UMOEndpoint describes a Provider in the Mule Server.
 

Uses of UMOImmutableEndpoint in org.mule.umo.provider
 

Methods in org.mule.umo.provider with parameters of type UMOImmutableEndpoint
 UMOMessage UMOMessageDispatcher.receive(UMOImmutableEndpoint endpoint, long timeout)
          Make a specific request to the underlying transport
 OutputStream UMOMessageDispatcher.getOutputStream(UMOImmutableEndpoint endpoint, UMOMessage message)
          Well get the output stream (if any) for this type of transport.
 UMOMessageDispatcher UMOMessageDispatcherFactory.create(UMOImmutableEndpoint endpoint)
           
 UMOMessageDispatcher UMOConnector.getDispatcher(UMOImmutableEndpoint endpoint)
          The connector can pool dispatchers based on their endpointUri or can ingnore the endpointUri altogether and use a ThreadLocal or always create new.
 

Constructors in org.mule.umo.provider with parameters of type UMOImmutableEndpoint
ReceiveException(Message message, UMOImmutableEndpoint endpoint, long timeout)
           
ReceiveException(Message message, UMOImmutableEndpoint endpoint, long timeout, Throwable cause)
           
ReceiveException(UMOImmutableEndpoint endpoint, long timeout, Throwable cause)
           
DispatchException(UMOMessage message, UMOImmutableEndpoint endpoint)
           
DispatchException(UMOMessage umoMessage, UMOImmutableEndpoint endpoint, Throwable cause)
           
DispatchException(Message message, UMOMessage umoMessage, UMOImmutableEndpoint endpoint)
           
DispatchException(Message message, UMOMessage umoMessage, UMOImmutableEndpoint endpoint, Throwable cause)
           
 

Uses of UMOImmutableEndpoint in org.mule.umo.routing
 

Fields in org.mule.umo.routing declared as UMOImmutableEndpoint
protected  UMOImmutableEndpoint RoutingException.endpoint
           
 

Methods in org.mule.umo.routing that return UMOImmutableEndpoint
 UMOImmutableEndpoint RoutingException.getEndpoint()
           
 

Constructors in org.mule.umo.routing with parameters of type UMOImmutableEndpoint
RoutingException(UMOMessage message, UMOImmutableEndpoint endpoint)
           
RoutingException(UMOMessage umoMessage, UMOImmutableEndpoint endpoint, Throwable cause)
           
RoutingException(Message message, UMOMessage umoMessage, UMOImmutableEndpoint endpoint)
           
RoutingException(Message message, UMOMessage umoMessage, UMOImmutableEndpoint endpoint, Throwable cause)
           
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)
           
 

Uses of UMOImmutableEndpoint in org.mule.umo.security
 

Methods in org.mule.umo.security that return UMOImmutableEndpoint
 UMOImmutableEndpoint UMOEndpointSecurityFilter.getEndpoint()
           
 

Methods in org.mule.umo.security with parameters of type UMOImmutableEndpoint
 void UMOEndpointSecurityFilter.setEndpoint(UMOImmutableEndpoint endpoint)
           
 

Constructors in org.mule.umo.security with parameters of type UMOImmutableEndpoint
CredentialsNotSetException(UMOMessage umoMessage, UMOSecurityContext context, UMOImmutableEndpoint endpoint, UMOEndpointSecurityFilter filter)
           
UnauthorisedException(UMOMessage umoMessage, UMOSecurityContext context, UMOImmutableEndpoint endpoint, UMOEndpointSecurityFilter filter)
           
 

Uses of UMOImmutableEndpoint in org.mule.umo.space
 

Methods in org.mule.umo.space with parameters of type UMOImmutableEndpoint
 UMOSpace UMOSpaceFactory.create(UMOImmutableEndpoint endpoint)
          Creates a space based on the endpoint URI and can use additional properties, transaction info, security info and filters associated with the endpoint
 

Uses of UMOImmutableEndpoint in org.mule.umo.transformer
 

Methods in org.mule.umo.transformer that return UMOImmutableEndpoint
 UMOImmutableEndpoint UMOTransformer.getEndpoint()
           
 

Methods in org.mule.umo.transformer with parameters of type UMOImmutableEndpoint
 void UMOTransformer.setEndpoint(UMOImmutableEndpoint endpoint)
           
 

Uses of UMOImmutableEndpoint in org.mule.util
 

Methods in org.mule.util with parameters of type UMOImmutableEndpoint
static String ObjectNameHelper.getEndpointName(UMOImmutableEndpoint endpoint)
           
 



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