Uses of Interface
org.mule.api.endpoint.OutboundEndpoint

Packages that use OutboundEndpoint
org.mule The Mule implementation of the Universal Message Objects(tm) API specification. 
org.mule.agent Admin components and Agents used to control and Monitor Mule 
org.mule.api 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.api.client   
org.mule.api.endpoint Endpoint interfaces. 
org.mule.api.transport Contains the interfaces that comprise a provider implementation. 
org.mule.client   
org.mule.config.endpoint   
org.mule.config.processors   
org.mule.config.spring.factories   
org.mule.construct   
org.mule.construct.builder   
org.mule.endpoint Implemtation of Mule endpoint uris. 
org.mule.endpoint.outbound   
org.mule.module.client Simple interface for Mule clients to send and receive events from local or remote Mule Servers. 
org.mule.module.cxf.endpoint   
org.mule.module.cxf.transport   
org.mule.module.ibeans.config   
org.mule.module.ibeans.spi.support   
org.mule.module.jca 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.module.ws.config.spring.factories   
org.mule.module.ws.construct   
org.mule.routing Defines the core routing patterns supported by mule. 
org.mule.routing.outbound Outbound router implementation as described in the Enterprise Integration Patterns book. 
org.mule.transport Contains Abstract classes providing common functionality for all Mule providers. 
org.mule.transport.ajax   
org.mule.transport.ejb   
org.mule.transport.email Provides pop3, smtp and imap connectivity for Mule
org.mule.transport.file Provides file transport in the form of a directory listeners and file dispatchers. 
org.mule.transport.ftp   
org.mule.transport.http Provides http transport including proxy support. 
org.mule.transport.http.config.spring.factories   
org.mule.transport.http.construct   
org.mule.transport.jdbc Provides jdbc transport. 
org.mule.transport.jms Provides Jms transport connectivity with support for all Jms features. 
org.mule.transport.quartz   
org.mule.transport.rmi   
org.mule.transport.sftp   
org.mule.transport.soap.axis Provides an Axis soap transport for Mule
org.mule.transport.soap.axis.extensions Axis specific extensions and component implementation that enables Mule components to act as Axis soap services. 
org.mule.transport.soap.axis.wsdl   
org.mule.transport.stdio   
org.mule.transport.tcp Provides tcp connectivity for Mule
org.mule.transport.udp Provides Udp connectivity for Mule
org.mule.transport.vm A connector implementation allowing events to be passed between Mule sessions via in-memory queues. 
org.mule.transport.xmpp   
 

Uses of OutboundEndpoint in org.mule
 

Methods in org.mule with parameters of type OutboundEndpoint
 void DefaultMuleEventContext.dispatchEvent(MuleMessage message, OutboundEndpoint endpoint)
          Depending on the session state this methods either Passes an event asynchronously to the next available Mule component in the pool or via the endpoint configured for the event
 MuleMessage DefaultMuleEventContext.sendEvent(MuleMessage message, OutboundEndpoint endpoint)
          Depending on the session state this methods either Passes an event synchronously to the next available Mule component in the pool or via the endpoint configured for the event
 

Uses of OutboundEndpoint in org.mule.agent
 

Methods in org.mule.agent that return OutboundEndpoint
 OutboundEndpoint EndpointNotificationLoggerAgent.getEndpoint()
           
 

Methods in org.mule.agent with parameters of type OutboundEndpoint
 void EndpointNotificationLoggerAgent.setEndpoint(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.api
 

Methods in org.mule.api that return OutboundEndpoint
 OutboundEndpoint EndpointAnnotationParser.parseOutboundEndpoint(Annotation annotation, Map metaInfo)
          Creates an outbound endpoint from the annotation.
 

Methods in org.mule.api with parameters of type OutboundEndpoint
 void MuleEventContext.dispatchEvent(MuleMessage message, OutboundEndpoint endpoint)
          Depending on the session state this methods either Passes an event asynchronously to the next available Mule component in the pool or via the endpoint configured for the event
 MuleMessage MuleEventContext.sendEvent(MuleMessage message, OutboundEndpoint endpoint)
          Depending on the session state this methods either Passes an event synchronously to the next available Mule component in the pool or via the endpoint configured for the event
 

Uses of OutboundEndpoint in org.mule.api.client
 

Methods in org.mule.api.client with parameters of type OutboundEndpoint
 MuleMessage LocalMuleClient.process(OutboundEndpoint endpoint, MuleMessage message)
          Sends an event synchronously to a endpointUri via a Mule server and a resulting message is returned.
 MuleMessage LocalMuleClient.process(OutboundEndpoint endpoint, Object payload, Map<String,Object> messageProperties)
          Sends an event synchronously to a endpointUri via a Mule server and a resulting message is returned.
 

Uses of OutboundEndpoint in org.mule.api.endpoint
 

Methods in org.mule.api.endpoint that return OutboundEndpoint
 OutboundEndpoint EndpointBuilder.buildOutboundEndpoint()
          Constructs outbound endpoints
 OutboundEndpoint EndpointFactory.getOutboundEndpoint(EndpointBuilder builder)
          Creates an endpoint with the "OUTBOUND" role using the builder provided.
 OutboundEndpoint EndpointFactory.getOutboundEndpoint(EndpointURI endpointUri)
          Deprecated.  
 OutboundEndpoint EndpointFactory.getOutboundEndpoint(String uri)
          Creates an endpoint with the "OUTBOUND" role.
 OutboundEndpoint EndpointCache.getOutboundEndpoint(String uri, MessageExchangePattern mep, Long responseTimeout)
           
 

Methods in org.mule.api.endpoint with parameters of type OutboundEndpoint
 MessageProcessor EndpointMessageProcessorChainFactory.createOutboundMessageProcessorChain(OutboundEndpoint endpoint, FlowConstruct flowConstruct, MessageProcessor target)
           
 

Uses of OutboundEndpoint in org.mule.api.transport
 

Methods in org.mule.api.transport that return OutboundEndpoint
 OutboundEndpoint MessageDispatcher.getEndpoint()
           
 

Methods in org.mule.api.transport with parameters of type OutboundEndpoint
 void MessageDispatcherFactory.activate(OutboundEndpoint endpoint, MessageDispatcher dispatcher)
          Invoked before the given dispatcher is handed out to a client, but not after MessageDispatcherFactory.create(OutboundEndpoint).
 MessageDispatcher MessageDispatcherFactory.create(OutboundEndpoint endpoint)
          Creates a new message dispatcher instance, initialised with the passed endpoint.
 void MessageDispatcherFactory.destroy(OutboundEndpoint endpoint, MessageDispatcher dispatcher)
          Invoked when a dispatcher returned false for MessageDispatcherFactory.validate(OutboundEndpoint, MessageDispatcher).
 OutputStream Connector.getOutputStream(OutboundEndpoint endpoint, MuleEvent event)
          Will get the output stream for this type of transport.
 void MessageDispatcherFactory.passivate(OutboundEndpoint endpoint, MessageDispatcher dispatcher)
          Invoked immediately before the given dispatcher is returned to its pool.
 boolean MessageDispatcherFactory.validate(OutboundEndpoint endpoint, MessageDispatcher dispatcher)
          Invoked after the dispatcher is returned from a client but before it is prepared for return to its pool via MessageDispatcherFactory.passivate(OutboundEndpoint, MessageDispatcher).
 

Uses of OutboundEndpoint in org.mule.client
 

Methods in org.mule.client with parameters of type OutboundEndpoint
protected  MuleEvent DefaultLocalMuleClient.createMuleEvent(MuleMessage message, OutboundEndpoint endpoint)
           
 MuleMessage DefaultLocalMuleClient.process(OutboundEndpoint endpoint, MuleMessage message)
           
 MuleMessage DefaultLocalMuleClient.process(OutboundEndpoint endpoint, Object payload, Map<String,Object> messageProperties)
           
 

Uses of OutboundEndpoint in org.mule.config.endpoint
 

Methods in org.mule.config.endpoint that return OutboundEndpoint
 OutboundEndpoint AbstractEndpointAnnotationParser.parseOutboundEndpoint(Annotation annotation, Map metaInfo)
           
 

Uses of OutboundEndpoint in org.mule.config.processors
 

Methods in org.mule.config.processors that return OutboundEndpoint
protected  OutboundEndpoint DecoratingAnnotatedServiceProcessor.tryOutboundEndpointAnnotation(AnnotationMetaData metaData, ChannelType channelType)
           
 

Uses of OutboundEndpoint in org.mule.config.spring.factories
 

Methods in org.mule.config.spring.factories with parameters of type OutboundEndpoint
 void ValidatorFactoryBean.setEndpoint(OutboundEndpoint endpoint)
           
 void BridgeFactoryBean.setEndpoint(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.construct
 

Constructors in org.mule.construct with parameters of type OutboundEndpoint
Bridge(String name, MuleContext muleContext, MessageSource messageSource, OutboundEndpoint outboundEndpoint, List<MessageProcessor> transformers, List<MessageProcessor> responseTransformers, MessageExchangePattern exchangePattern, boolean transacted)
           
Validator(String name, MuleContext muleContext, MessageSource messageSource, OutboundEndpoint outboundEndpoint, Filter validationFilter, String ackExpression, String nackExpression)
           
Validator(String name, MuleContext muleContext, MessageSource messageSource, OutboundEndpoint outboundEndpoint, Filter validationFilter, String ackExpression, String nackExpression, String errorExpression)
           
 

Uses of OutboundEndpoint in org.mule.construct.builder
 

Methods in org.mule.construct.builder that return OutboundEndpoint
protected  OutboundEndpoint AbstractFlowConstructWithSingleInboundAndOutboundEndpointBuilder.getOrBuildOutboundEndpoint(MuleContext muleContext)
           
 

Methods in org.mule.construct.builder with parameters of type OutboundEndpoint
 T AbstractFlowConstructWithSingleInboundAndOutboundEndpointBuilder.outboundEndpoint(OutboundEndpoint outboundEndpoint)
           
 

Uses of OutboundEndpoint in org.mule.endpoint
 

Classes in org.mule.endpoint that implement OutboundEndpoint
 class DefaultOutboundEndpoint
           
 class DynamicOutboundEndpoint
          An Outbound endpoint who's URI is a template used to created new non dynamic endpoints based on the current message.
 class DynamicURIOutboundEndpoint
          Allows EndpointURI to be set and changed dynamically by wrapping up an immutable endpoint instance.
 

Fields in org.mule.endpoint declared as OutboundEndpoint
protected  OutboundEndpoint DynamicURIOutboundEndpoint.endpoint
           
 

Methods in org.mule.endpoint that return OutboundEndpoint
 OutboundEndpoint AbstractEndpointBuilder.buildOutboundEndpoint()
           
protected  OutboundEndpoint AbstractEndpointBuilder.doBuildOutboundEndpoint()
           
 OutboundEndpoint DefaultEndpointFactory.getOutboundEndpoint(EndpointBuilder builder)
           
 OutboundEndpoint DefaultEndpointFactory.getOutboundEndpoint(EndpointURI uri)
           
 OutboundEndpoint DefaultEndpointFactory.getOutboundEndpoint(String uri)
           
 OutboundEndpoint SimpleEndpointCache.getOutboundEndpoint(String uri, MessageExchangePattern mep, Long responseTimeout)
           
 

Methods in org.mule.endpoint with parameters of type OutboundEndpoint
 MessageProcessor DefaultEndpointMessageProcessorChainFactory.createOutboundMessageProcessorChain(OutboundEndpoint endpoint, FlowConstruct flowConstruct, MessageProcessor target)
           
protected  List<MessageProcessor> DefaultEndpointMessageProcessorChainFactory.createOutboundMessageProcessors(OutboundEndpoint endpoint)
          Override this method to change the default MessageProcessors.
protected  List<MessageProcessor> DefaultEndpointMessageProcessorChainFactory.createOutboundResponseMessageProcessors(OutboundEndpoint endpoint)
          Override this method to change the default MessageProcessors.
 

Constructors in org.mule.endpoint with parameters of type OutboundEndpoint
DynamicURIOutboundEndpoint(OutboundEndpoint endpoint)
           
DynamicURIOutboundEndpoint(OutboundEndpoint endpoint, EndpointURI dynamicEndpointURI)
           
 

Uses of OutboundEndpoint in org.mule.endpoint.outbound
 

Constructors in org.mule.endpoint.outbound with parameters of type OutboundEndpoint
OutboundEndpointMimeTypeCheckingMessageProcessor(OutboundEndpoint endpoint)
           
OutboundEndpointPropertyMessageProcessor(OutboundEndpoint endpoint)
           
OutboundNotificationMessageProcessor(OutboundEndpoint endpoint)
           
OutboundResponsePropertiesMessageProcessor(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.module.client
 

Methods in org.mule.module.client that return OutboundEndpoint
protected  OutboundEndpoint MuleClient.getOutboundEndpoint(String uri, MessageExchangePattern exchangePattern, Integer responseTimeout)
           
 

Uses of OutboundEndpoint in org.mule.module.cxf.endpoint
 

Methods in org.mule.module.cxf.endpoint that return OutboundEndpoint
 OutboundEndpoint WsdlCxfEndpointBuilder.buildOutboundEndpoint()
           
 OutboundEndpoint CxfEndpointBuilder.buildOutboundEndpoint()
           
 

Uses of OutboundEndpoint in org.mule.module.cxf.transport
 

Methods in org.mule.module.cxf.transport that return OutboundEndpoint
protected  OutboundEndpoint MuleUniversalConduit.getEndpoint(MuleContext muleContext, String uri)
           
 

Methods in org.mule.module.cxf.transport with parameters of type OutboundEndpoint
protected  void MuleUniversalConduit.dispatchMuleMessage(org.apache.cxf.message.Message m, MuleEvent reqEvent, OutboundEndpoint endpoint)
           
protected  MuleEvent MuleUniversalConduit.processNext(MuleEvent event, org.apache.cxf.message.Exchange exchange, OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.module.ibeans.config
 

Fields in org.mule.module.ibeans.config declared as OutboundEndpoint
protected  OutboundEndpoint CallInterfaceBinding.endpoint
           
protected  OutboundEndpoint IBeanBinding.endpoint
           
 

Methods in org.mule.module.ibeans.config that return OutboundEndpoint
 OutboundEndpoint CallAnnotationParser.parseOutboundEndpoint(Annotation annotation, Map metaInfo)
           
 

Uses of OutboundEndpoint in org.mule.module.ibeans.spi.support
 

Classes in org.mule.module.ibeans.spi.support that implement OutboundEndpoint
 class CallOutboundEndpoint
           A dynamic outbound endpoint defined when using the Call annotation.
 

Uses of OutboundEndpoint in org.mule.module.jca
 

Methods in org.mule.module.jca that return OutboundEndpoint
protected  OutboundEndpoint DefaultMuleConnection.getOutboundEndpoint(String uri, MessageExchangePattern exchangePattern)
           
 

Methods in org.mule.module.jca with parameters of type OutboundEndpoint
protected  MuleEvent DefaultMuleConnection.getEvent(MuleMessage message, OutboundEndpoint endpoint)
          Packages a mule event for the current request
 

Uses of OutboundEndpoint in org.mule.module.ws.config.spring.factories
 

Methods in org.mule.module.ws.config.spring.factories with parameters of type OutboundEndpoint
 void WSProxyFactoryBean.setEndpoint(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.module.ws.construct
 

Constructors in org.mule.module.ws.construct with parameters of type OutboundEndpoint
WSProxy(String name, MuleContext muleContext, MessageSource messageSource, OutboundEndpoint outboundEndpoint, List<MessageProcessor> transformers, List<MessageProcessor> responseTransformers)
           
WSProxy(String name, MuleContext muleContext, MessageSource messageSource, OutboundEndpoint outboundEndpoint, List<MessageProcessor> transformers, List<MessageProcessor> responseTransformers, String wsdlContents)
           
WSProxy(String name, MuleContext muleContext, MessageSource messageSource, OutboundEndpoint outboundEndpoint, List<MessageProcessor> transformers, List<MessageProcessor> responseTransformers, URI wsdlUri)
           
 

Uses of OutboundEndpoint in org.mule.routing
 

Fields in org.mule.routing declared as OutboundEndpoint
protected  OutboundEndpoint ForwardingCatchAllStrategy.endpoint
           
 

Methods in org.mule.routing that return OutboundEndpoint
 OutboundEndpoint ForwardingCatchAllStrategy.getEndpoint()
           
 

Methods in org.mule.routing with parameters of type OutboundEndpoint
 void ForwardingCatchAllStrategy.setEndpoint(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.routing.outbound
 

Methods in org.mule.routing.outbound that return OutboundEndpoint
protected  OutboundEndpoint AbstractRecipientList.buildOutboundEndpoint(String recipient)
           
 OutboundEndpoint SplitMessage.MessagePart.getEndpoint()
           
protected  OutboundEndpoint AbstractRecipientList.getRecipientEndpoint(MuleMessage message, Object recipient)
           
protected  OutboundEndpoint AbstractRecipientList.getRecipientEndpointFromString(MuleMessage message, String recipient)
           
protected  OutboundEndpoint AbstractRecipientList.getRecipientEndpointFromUri(EndpointURI uri)
           
 

Methods in org.mule.routing.outbound with parameters of type OutboundEndpoint
 void SplitMessage.addPart(Object part, OutboundEndpoint endpoint)
           
 

Constructors in org.mule.routing.outbound with parameters of type OutboundEndpoint
SplitMessage.MessagePart(OutboundEndpoint endpoint, Object part)
           
 

Uses of OutboundEndpoint in org.mule.transport
 

Methods in org.mule.transport that return OutboundEndpoint
 OutboundEndpoint AbstractMessageDispatcher.getEndpoint()
           
protected  OutboundEndpoint DefaultReplyToHandler.getEndpoint(MuleEvent event, String endpointUri)
           
 

Methods in org.mule.transport with parameters of type OutboundEndpoint
 void KeyedPoolMessageDispatcherFactoryAdapter.activate(OutboundEndpoint endpoint, MessageDispatcher dispatcher)
           
 void AbstractMessageDispatcherFactory.activate(OutboundEndpoint endpoint, MessageDispatcher dispatcher)
           
 MessageDispatcher UnsupportedMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 MessageDispatcher KeyedPoolMessageDispatcherFactoryAdapter.create(OutboundEndpoint endpoint)
           
abstract  MessageDispatcher AbstractMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 MessageProcessor AbstractConnector.createDispatcherMessageProcessor(OutboundEndpoint endpoint)
           
 void KeyedPoolMessageDispatcherFactoryAdapter.destroy(OutboundEndpoint endpoint, MessageDispatcher dispatcher)
           
 void AbstractMessageDispatcherFactory.destroy(OutboundEndpoint endpoint, MessageDispatcher dispatcher)
           
 OutputStream AbstractConnector.getOutputStream(OutboundEndpoint endpoint, MuleEvent event)
          Will get the output stream for this type of transport.
 void KeyedPoolMessageDispatcherFactoryAdapter.passivate(OutboundEndpoint endpoint, MessageDispatcher dispatcher)
           
 void AbstractMessageDispatcherFactory.passivate(OutboundEndpoint endpoint, MessageDispatcher dispatcher)
           
protected  void AbstractConnector.setupDispatchReturn(OutboundEndpoint endpoint, MessageDispatcher dispatcher, MuleMessage result)
          This method will return the dispatcher to the pool or, if the payload is an inputstream, replace the payload with a new DelegatingInputStream which returns the dispatcher to the pool when the stream is closed.
 boolean KeyedPoolMessageDispatcherFactoryAdapter.validate(OutboundEndpoint endpoint, MessageDispatcher dispatcher)
           
 boolean AbstractMessageDispatcherFactory.validate(OutboundEndpoint endpoint, MessageDispatcher dispatcher)
           
 

Constructors in org.mule.transport with parameters of type OutboundEndpoint
AbstractMessageDispatcher(OutboundEndpoint endpoint)
           
UnsupportedMessageDispatcher(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.ajax
 

Methods in org.mule.transport.ajax with parameters of type OutboundEndpoint
 MessageDispatcher AjaxMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.ajax with parameters of type OutboundEndpoint
AjaxMessageDispatcher(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.ejb
 

Methods in org.mule.transport.ejb with parameters of type OutboundEndpoint
 MessageDispatcher EjbMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.ejb with parameters of type OutboundEndpoint
EjbMessageDispatcher(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.email
 

Methods in org.mule.transport.email with parameters of type OutboundEndpoint
 MessageDispatcher SmtpMessageDispatcherFactory.create(OutboundEndpoint endpoint)
          Creates a new message dispatcher instance, initialised with the passed endpoint.
 

Constructors in org.mule.transport.email with parameters of type OutboundEndpoint
SmtpMessageDispatcher(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.file
 

Methods in org.mule.transport.file with parameters of type OutboundEndpoint
 MessageDispatcher FileMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 OutputStream FileConnector.getOutputStream(OutboundEndpoint endpoint, MuleEvent event)
          Well get the output stream (if any) for this type of transport.
 

Constructors in org.mule.transport.file with parameters of type OutboundEndpoint
FileMessageDispatcher(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.ftp
 

Methods in org.mule.transport.ftp with parameters of type OutboundEndpoint
 MessageDispatcher FtpMessageDispatcherFactory.create(OutboundEndpoint endpoint)
          Creates a new message dispatcher instance, initialised with the passed endpoint.
 OutputStream FtpConnector.getOutputStream(OutboundEndpoint endpoint, MuleEvent event)
          Well get the output stream (if any) for this type of transport.
 

Constructors in org.mule.transport.ftp with parameters of type OutboundEndpoint
FtpMessageDispatcher(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.http
 

Methods in org.mule.transport.http with parameters of type OutboundEndpoint
 MessageDispatcher HttpClientMessageDispatcherFactory.create(OutboundEndpoint endpoint)
          Creates a new message dispatcher instance, initialised with the passed endpoint.
 MessageDispatcher HttpsClientMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.http with parameters of type OutboundEndpoint
HttpClientMessageDispatcher(OutboundEndpoint endpoint)
           
HttpsClientMessageDispatcher(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.http.config.spring.factories
 

Methods in org.mule.transport.http.config.spring.factories with parameters of type OutboundEndpoint
 void HttpProxyFactoryBean.setEndpoint(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.http.construct
 

Constructors in org.mule.transport.http.construct with parameters of type OutboundEndpoint
HttpProxy(String name, MuleContext muleContext, MessageSource messageSource, OutboundEndpoint outboundEndpoint, List<MessageProcessor> transformers, List<MessageProcessor> responseTransformers, CachingStrategy cachingStrategy)
           
 

Uses of OutboundEndpoint in org.mule.transport.jdbc
 

Methods in org.mule.transport.jdbc with parameters of type OutboundEndpoint
 MessageDispatcher JdbcMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.jdbc with parameters of type OutboundEndpoint
JdbcMessageDispatcher(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.jms
 

Methods in org.mule.transport.jms with parameters of type OutboundEndpoint
 MessageDispatcher JmsMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.jms with parameters of type OutboundEndpoint
JmsMessageDispatcher(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.quartz
 

Methods in org.mule.transport.quartz with parameters of type OutboundEndpoint
 MessageDispatcher QuartzMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.quartz with parameters of type OutboundEndpoint
QuartzMessageDispatcher(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.rmi
 

Methods in org.mule.transport.rmi with parameters of type OutboundEndpoint
 MessageDispatcher RmiMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 Method RmiConnector.getMethodObject(Remote remoteObject, MuleEvent event, OutboundEndpoint outboundEndpoint)
          Helper method for Dispatchers and Receives to extract the correct method from a Remote object
 

Constructors in org.mule.transport.rmi with parameters of type OutboundEndpoint
RmiMessageDispatcher(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.sftp
 

Methods in org.mule.transport.sftp with parameters of type OutboundEndpoint
 MessageDispatcher SftpMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.sftp with parameters of type OutboundEndpoint
SftpMessageDispatcher(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.soap.axis
 

Methods in org.mule.transport.soap.axis with parameters of type OutboundEndpoint
 MessageDispatcher AxisMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.soap.axis with parameters of type OutboundEndpoint
AxisMessageDispatcher(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.soap.axis.extensions
 

Methods in org.mule.transport.soap.axis.extensions that return OutboundEndpoint
protected  OutboundEndpoint UniversalSender.lookupEndpoint(String uri)
           
 

Uses of OutboundEndpoint in org.mule.transport.soap.axis.wsdl
 

Methods in org.mule.transport.soap.axis.wsdl with parameters of type OutboundEndpoint
 MessageDispatcher AxisWsdlMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 

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

Uses of OutboundEndpoint in org.mule.transport.stdio
 

Methods in org.mule.transport.stdio with parameters of type OutboundEndpoint
 MessageDispatcher StdioMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.stdio with parameters of type OutboundEndpoint
StdioMessageDispatcher(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.tcp
 

Methods in org.mule.transport.tcp with parameters of type OutboundEndpoint
 MessageDispatcher TcpMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 MessageDispatcher LocalSocketTcpMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.tcp with parameters of type OutboundEndpoint
LocalSocketTcpMessageDispatcher(OutboundEndpoint endpoint)
           
TcpMessageDispatcher(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.udp
 

Methods in org.mule.transport.udp with parameters of type OutboundEndpoint
 MessageDispatcher UdpMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.udp with parameters of type OutboundEndpoint
UdpMessageDispatcher(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.vm
 

Methods in org.mule.transport.vm with parameters of type OutboundEndpoint
 MessageDispatcher VMMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.vm with parameters of type OutboundEndpoint
VMMessageDispatcher(OutboundEndpoint endpoint)
           
 

Uses of OutboundEndpoint in org.mule.transport.xmpp
 

Methods in org.mule.transport.xmpp with parameters of type OutboundEndpoint
 MessageDispatcher XmppMessageDispatcherFactory.create(OutboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.xmpp with parameters of type OutboundEndpoint
XmppMessageDispatcher(OutboundEndpoint endpoint)
           
 



Copyright © 2003-2012 MuleSoft, Inc.. All Rights Reserved.