|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use UMOEndpoint | |
---|---|
org.mule | Defines the main public API of the MuleManager and support classes such as the MuleServer. |
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.management.mbeans | Jmx Management beans for mule components, the model and the Mule server. |
org.mule.providers | Contains Abstract classes providing common functionality for all Mule providers. |
org.mule.providers.bpm | |
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.http | Provides http transport including proxy support. |
org.mule.providers.http.jetty | |
org.mule.providers.http.servlet | |
org.mule.providers.jbi | Allows JBI components to interact with Mule. |
org.mule.providers.jbi.components | |
org.mule.providers.jdbc | Provides jdbc transport. |
org.mule.providers.jms | Provides Jms transport connectivity with support for all Jms features. |
org.mule.providers.jms.websphere | Provides Jms connectivity with Websphere-specific workarounds and improvements. |
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.extensions | Axis specific extensions and component implementation that enables Mule components to act as Axis soap services. |
org.mule.providers.soap.xfire | |
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.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.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.nested | |
org.mule.routing.outbound | Outbound router implementation as described in the Enterprise Integration Patterns book. |
org.mule.routing.response | Response router implementations that enable asynchronous event processing in request /response messaging requests. |
org.mule.tck | Provides a suite of abstract test cases that can be used to test you custom Mule extensions. |
org.mule.tck.functional | Helper classes and interfaces used by Mule fnctional tests. |
org.mule.tck.providers | Test suite for testing custom provider implementations. |
org.mule.tck.testmodels.mule | |
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.manager | Manager APIs, including the UMOManager, agent and server event 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.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(String logicalName)
Getter for a global endpoint. |
UMOEndpoint |
MuleManager.lookupEndpointByAddress(String address)
|
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.config.builders |
---|
Methods in org.mule.config.builders that return UMOEndpoint | |
---|---|
UMOEndpoint |
QuickConfigurationBuilder.createEndpoint(String uri,
String name,
boolean inbound)
|
UMOEndpoint |
QuickConfigurationBuilder.createEndpoint(String uri,
String name,
boolean inbound,
String transformers)
|
UMOEndpoint |
QuickConfigurationBuilder.createEndpoint(String uri,
String name,
boolean inbound,
String transformers,
UMOFilter filter)
|
UMOEndpoint |
QuickConfigurationBuilder.createEndpoint(String uri,
String name,
boolean inbound,
UMOFilter filter)
|
UMOEndpoint |
QuickConfigurationBuilder.registerEndpoint(String uri,
String name,
boolean inbound)
|
UMOEndpoint |
QuickConfigurationBuilder.registerEndpoint(String uri,
String name,
boolean inbound,
Map properties)
|
UMOEndpoint |
QuickConfigurationBuilder.registerEndpoint(String uri,
String name,
boolean inbound,
Map properties,
UMOFilter filter)
|
Methods in org.mule.config.builders with parameters of type UMOEndpoint | |
---|---|
UMODescriptor |
QuickConfigurationBuilder.createDescriptor(String implementation,
String name,
UMOEndpoint inboundEndpoint,
UMOEndpoint outboundEndpoint,
Map properties)
Creates a Mule Descriptor that can be further maniputalted by the calling class before registering it with the UMOModel |
UMOComponent |
QuickConfigurationBuilder.registerComponent(String implementation,
String name,
UMOEndpoint inEndpoint,
UMOEndpoint outEndpoint,
Map properties)
|
Uses of UMOEndpoint in org.mule.config.i18n |
---|
Methods in org.mule.config.i18n with parameters of type UMOEndpoint | |
---|---|
static Message |
CoreMessages.failedToDispatchToReplyto(UMOEndpoint endpoint)
|
Uses of UMOEndpoint in org.mule.extras.client |
---|
Methods in org.mule.extras.client that return UMOEndpoint | |
---|---|
protected UMOEndpoint |
MuleClient.getDefaultClientEndpoint(UMODescriptor descriptor,
Object payload)
|
protected UMOEndpoint |
MuleClient.getEndpoint(String uri,
String type)
|
Methods in org.mule.extras.client with parameters of type UMOEndpoint | |
---|---|
protected void |
RemoteDispatcher.updateContext(UMOMessage message,
UMOEndpoint endpoint,
boolean synchronous)
|
Uses of UMOEndpoint in org.mule.impl |
---|
Fields in org.mule.impl declared as UMOEndpoint | |
---|---|
protected UMOEndpoint |
ImmutableMuleDescriptor.inboundEndpoint
Deprecated. Please use inboundRouter instead. |
protected UMOEndpoint |
ImmutableMuleDescriptor.outboundEndpoint
Deprecated. Please use outboundRouter instead. |
Methods in org.mule.impl that return UMOEndpoint | |
---|---|
static UMOEndpoint |
ImmutableMuleEndpoint.createEndpointFromUri(UMOEndpointURI uri,
String type)
|
protected UMOEndpoint |
AbstractExceptionListener.getEndpoint(Throwable t)
Returns an endpoint for the given exception. |
static UMOEndpoint |
ImmutableMuleEndpoint.getEndpointFromUri(String uri)
|
static UMOEndpoint |
ImmutableMuleEndpoint.getEndpointFromUri(UMOEndpointURI uri)
|
UMOEndpoint |
ImmutableMuleDescriptor.getInboundEndpoint()
The inbound Provider to use when receiveing an event. |
static UMOEndpoint |
ImmutableMuleEndpoint.getOrCreateEndpointForUri(String uriIdentifier,
String type)
|
static UMOEndpoint |
ImmutableMuleEndpoint.getOrCreateEndpointForUri(UMOEndpointURI uri,
String type)
|
UMOEndpoint |
ImmutableMuleDescriptor.getOutboundEndpoint()
The outbound Provider to use when sending an event. |
Methods in org.mule.impl with parameters of type UMOEndpoint | |
---|---|
void |
AbstractExceptionListener.addEndpoint(UMOEndpoint endpoint)
|
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 |
boolean |
AbstractExceptionListener.removeEndpoint(UMOEndpoint endpoint)
|
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 |
MuleDescriptor.setInboundEndpoint(UMOEndpoint endpoint)
|
void |
MuleDescriptor.setOutboundEndpoint(UMOEndpoint endpoint)
|
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.mbeans |
---|
Constructors in org.mule.management.mbeans with parameters of type UMOEndpoint | |
---|---|
EndpointService(UMOEndpoint 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 | |
---|---|
UMOEndpoint |
AbstractMessageReceiver.getEndpoint()
|
protected UMOEndpoint |
DefaultReplyToHandler.getEndpoint(UMOEvent event,
String endpointUri)
|
Methods in org.mule.providers with parameters of type UMOEndpoint | |
---|---|
protected UMOMessageReceiver |
AbstractConnector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
Create a Message receiver for this connector |
protected void |
AbstractConnector.destroyReceiver(UMOMessageReceiver receiver,
UMOEndpoint endpoint)
|
UMOMessageReceiver |
AbstractConnector.getReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
protected Object |
AbstractConnector.getReceiverKey(UMOComponent component,
UMOEndpoint endpoint)
The method determines the key used to store the receiver against. |
UMOMessageReceiver |
AbstractConnector.registerListener(UMOComponent component,
UMOEndpoint endpoint)
This creates a UMOMessageReceiver associated with this endpoint
and registers it with the connector. |
void |
AbstractMessageReceiver.setEndpoint(UMOEndpoint endpoint)
|
void |
AbstractConnector.unregisterListener(UMOComponent component,
UMOEndpoint endpoint)
|
Constructors in org.mule.providers with parameters of type UMOEndpoint | |
---|---|
AbstractMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
Creates the Message Receiver |
|
AbstractPollingMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
|
TransactedPollingMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
|
TransactedPollingMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
long frequency)
Deprecated. please use #TransactedPollingMessageReceiver(UMOConnector, UMOComponent, UMOEndpoint, long, TimeUnit)
instead |
Uses of UMOEndpoint in org.mule.providers.bpm |
---|
Constructors in org.mule.providers.bpm with parameters of type UMOEndpoint | |
---|---|
ProcessMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOEndpoint in org.mule.providers.ejb |
---|
Constructors in org.mule.providers.ejb with parameters of type UMOEndpoint | |
---|---|
EjbMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
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 |
AbstractRetrieveMailConnector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
Constructors in org.mule.providers.email with parameters of type UMOEndpoint | |
---|---|
RetrieveMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
long checkFrequency,
boolean backupEnabled,
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 |
protected Object |
FileConnector.getReceiverKey(UMOComponent component,
UMOEndpoint endpoint)
|
Constructors in org.mule.providers.file with parameters of type UMOEndpoint | |
---|---|
FileMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
String readDir,
String moveDir,
String moveToPattern,
long frequency)
|
Uses of UMOEndpoint in org.mule.providers.ftp |
---|
Methods in org.mule.providers.ftp with parameters of type UMOEndpoint | |
---|---|
UMOMessageReceiver |
FtpConnector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
Constructors in org.mule.providers.ftp with parameters of type UMOEndpoint | |
---|---|
FtpMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
long frequency)
|
Uses of UMOEndpoint in org.mule.providers.http |
---|
Methods in org.mule.providers.http with parameters of type UMOEndpoint | |
---|---|
protected Object |
HttpConnector.getReceiverKey(UMOComponent component,
UMOEndpoint endpoint)
The method determines the key used to store the receiver against. |
protected UMOMessageReceiver |
HttpMessageReceiver.getTargetReceiver(UMOMessage message,
UMOEndpoint endpoint)
|
UMOMessageReceiver |
HttpConnector.registerListener(UMOComponent component,
UMOEndpoint endpoint)
|
Constructors in org.mule.providers.http with parameters of type UMOEndpoint | |
---|---|
HttpMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
|
HttpsMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
|
PollingHttpMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOEndpoint in org.mule.providers.http.jetty |
---|
Constructors in org.mule.providers.http.jetty with parameters of type UMOEndpoint | |
---|---|
JettyHttpMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOEndpoint in org.mule.providers.http.servlet |
---|
Methods in org.mule.providers.http.servlet that return UMOEndpoint | |
---|---|
protected UMOEndpoint |
MuleRESTReceiverServlet.getEndpointForURI(HttpServletRequest httpServletRequest)
|
Constructors in org.mule.providers.http.servlet with parameters of type UMOEndpoint | |
---|---|
ServletMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOEndpoint in org.mule.providers.jbi |
---|
Constructors in org.mule.providers.jbi with parameters of type UMOEndpoint | |
---|---|
JbiMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOEndpoint in org.mule.providers.jbi.components |
---|
Fields in org.mule.providers.jbi.components declared as UMOEndpoint | |
---|---|
protected UMOEndpoint |
AbstractEndpointComponent.muleEndpoint
|
Methods in org.mule.providers.jbi.components that return UMOEndpoint | |
---|---|
UMOEndpoint |
AbstractEndpointComponent.getMuleEndpoint()
|
Methods in org.mule.providers.jbi.components with parameters of type UMOEndpoint | |
---|---|
void |
AbstractEndpointComponent.setMuleEndpoint(UMOEndpoint muleEndpoint)
|
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)
|
Constructors in org.mule.providers.jdbc with parameters of type UMOEndpoint | |
---|---|
JdbcMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
String readStmt,
String ackStmt)
|
Uses of UMOEndpoint in org.mule.providers.jms |
---|
Methods in org.mule.providers.jms with parameters of type UMOEndpoint | |
---|---|
protected Object |
JmsConnector.getReceiverKey(UMOComponent component,
UMOEndpoint endpoint)
|
Constructors in org.mule.providers.jms with parameters of type UMOEndpoint | |
---|---|
JmsMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
|
MultiConsumerJmsMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
|
SingleJmsMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
|
TransactedSingleResourceJmsMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
|
XaTransactedJmsMessageReceiver(UMOConnector umoConnector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOEndpoint in org.mule.providers.jms.websphere |
---|
Constructors in org.mule.providers.jms.websphere with parameters of type UMOEndpoint | |
---|---|
WebsphereTransactedJmsMessageReceiver(UMOConnector umoConnector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOEndpoint in org.mule.providers.multicast |
---|
Methods in org.mule.providers.multicast with parameters of type UMOEndpoint | |
---|---|
protected Object |
MulticastConnector.getReceiverKey(UMOComponent component,
UMOEndpoint endpoint)
|
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.oracle.jms |
---|
Constructors in org.mule.providers.oracle.jms with parameters of type UMOEndpoint | |
---|---|
OracleJmsMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOEndpoint in org.mule.providers.quartz |
---|
Constructors in org.mule.providers.quartz with parameters of type UMOEndpoint | |
---|---|
QuartzMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOEndpoint in org.mule.providers.rmi |
---|
Methods in org.mule.providers.rmi with parameters of type UMOEndpoint | |
---|---|
UMOMessageReceiver |
RmiConnector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
Constructors in org.mule.providers.rmi with parameters of type UMOEndpoint | |
---|---|
RmiCallbackMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
|
RmiMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
long frequency)
|
Uses of UMOEndpoint in org.mule.providers.service |
---|
Methods in org.mule.providers.service that return UMOEndpoint | |
---|---|
static UMOEndpoint |
TransportFactory.createEndpoint(UMOEndpointURI uri,
String type)
|
Methods in org.mule.providers.service with parameters of type UMOEndpoint | |
---|---|
UMOMessageReceiver |
TransportServiceDescriptor.createMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
UMOMessageReceiver |
TransportServiceDescriptor.createMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
Object[] args)
|
Uses of UMOEndpoint in org.mule.providers.soap.axis |
---|
Methods in org.mule.providers.soap.axis with parameters of type UMOEndpoint | |
---|---|
UMOMessageReceiver |
AxisConnector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
protected Object |
AxisConnector.getReceiverKey(UMOComponent component,
UMOEndpoint endpoint)
The method determines the key used to store the receiver against. |
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.axis.extensions |
---|
Methods in org.mule.providers.soap.axis.extensions that return UMOEndpoint | |
---|---|
protected UMOEndpoint |
UniversalSender.lookupEndpoint(String uri)
|
Uses of UMOEndpoint in org.mule.providers.soap.xfire |
---|
Methods in org.mule.providers.soap.xfire with parameters of type UMOEndpoint | |
---|---|
protected Object |
XFireConnector.getReceiverKey(UMOComponent component,
UMOEndpoint endpoint)
The method determines the key used to store the receiver against. |
Constructors in org.mule.providers.soap.xfire with parameters of type UMOEndpoint | |
---|---|
XFireMessageReceiver(UMOConnector umoConnector,
UMOComponent component,
UMOEndpoint umoEndpoint)
|
Uses of UMOEndpoint in org.mule.providers.ssl |
---|
Constructors in org.mule.providers.ssl with parameters of type UMOEndpoint | |
---|---|
SslMessageReceiver(UMOConnector 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 |
StreamConnector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
UMOMessageReceiver |
SystemStreamConnector.registerListener(UMOComponent component,
UMOEndpoint endpoint)
|
Constructors in org.mule.providers.stream with parameters of type UMOEndpoint | |
---|---|
StreamMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
long checkFrequency)
|
Uses of UMOEndpoint in org.mule.providers.tcp |
---|
Constructors in org.mule.providers.tcp with parameters of type UMOEndpoint | |
---|---|
TcpMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
|
TcpStreamingMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOEndpoint in org.mule.providers.udp |
---|
Methods in org.mule.providers.udp with parameters of type UMOEndpoint | |
---|---|
protected Object |
UdpConnector.getReceiverKey(UMOComponent component,
UMOEndpoint endpoint)
|
Constructors in org.mule.providers.udp with parameters of type UMOEndpoint | |
---|---|
UdpMessageReceiver(UMOConnector 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)
|
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.ra |
---|
Methods in org.mule.ra that return UMOEndpoint | |
---|---|
protected UMOEndpoint |
MuleResourceAdapter.createMessageInflowEndpoint(MuleActivationSpec muleActivationSpec)
|
Methods in org.mule.ra with parameters of type UMOEndpoint | |
---|---|
protected MuleDescriptor |
MuleResourceAdapter.createJcaComponent(javax.resource.spi.endpoint.MessageEndpointFactory endpointFactory,
JcaModel model,
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 |
AbstractCatchAllStrategy.getEndpoint()
|
UMOEndpoint |
LoggingCatchAllStrategy.getEndpoint()
|
UMOEndpoint |
ComponentCatchAllStrategy.getEndpoint()
|
Methods in org.mule.routing with parameters of type UMOEndpoint | |
---|---|
void |
AbstractCatchAllStrategy.setEndpoint(UMOEndpoint endpoint)
|
void |
LoggingCatchAllStrategy.setEndpoint(UMOEndpoint endpoint)
|
void |
ComponentCatchAllStrategy.setEndpoint(UMOEndpoint endpoint)
|
Uses of UMOEndpoint in org.mule.routing.inbound |
---|
Methods in org.mule.routing.inbound that return UMOEndpoint | |
---|---|
UMOEndpoint |
InboundRouterCollection.getEndpoint(String name)
|
Methods in org.mule.routing.inbound with parameters of type UMOEndpoint | |
---|---|
void |
InboundRouterCollection.addEndpoint(UMOEndpoint endpoint)
|
boolean |
InboundRouterCollection.removeEndpoint(UMOEndpoint endpoint)
|
Uses of UMOEndpoint in org.mule.routing.nested |
---|
Methods in org.mule.routing.nested that return UMOEndpoint | |
---|---|
UMOEndpoint |
NestedRouter.getEndpoint()
|
Methods in org.mule.routing.nested with parameters of type UMOEndpoint | |
---|---|
void |
NestedRouter.setEndpoint(UMOEndpoint e)
|
Uses of UMOEndpoint in org.mule.routing.outbound |
---|
Methods in org.mule.routing.outbound that return UMOEndpoint | |
---|---|
UMOEndpoint |
FilteringOutboundRouter.getEndpoint(int index,
UMOMessage message)
Will Return the endpont at the given index and will resolve any template tags on the Endpoint URI if necessary |
protected UMOEndpoint |
RoundRobinXmlSplitter.getEndpointForMessage(UMOMessage message)
Retrieves a specific message part for the given endpoint. |
UMOEndpoint[] |
OutboundRouterCollection.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,
String recipient)
|
protected UMOEndpoint |
EndpointSelector.lookupEndpoint(String endpointName)
|
Methods in org.mule.routing.outbound with parameters of type UMOEndpoint | |
---|---|
void |
RoundRobinXmlSplitter.addEndpoint(UMOEndpoint endpoint)
|
void |
AbstractOutboundRouter.addEndpoint(UMOEndpoint endpoint)
|
void |
ChainingRouter.addEndpoint(UMOEndpoint endpoint)
|
void |
FilteringOutboundRouter.addEndpoint(UMOEndpoint endpoint)
|
void |
OutboundPassThroughRouter.addEndpoint(UMOEndpoint endpoint)
|
void |
ExceptionBasedRouter.addEndpoint(UMOEndpoint endpoint)
|
void |
AbstractOutboundRouter.dispatch(UMOSession session,
UMOMessage message,
UMOEndpoint endpoint)
|
protected UMOMessage |
FilteringXmlMessageSplitter.getMessagePart(UMOMessage message,
UMOEndpoint endpoint)
Retrieves a specific message part for the given endpoint. |
protected UMOMessage |
FilteringListMessageSplitter.getMessagePart(UMOMessage message,
UMOEndpoint endpoint)
|
protected abstract UMOMessage |
AbstractMessageSplitter.getMessagePart(UMOMessage message,
UMOEndpoint endpoint)
Retrieves a specific message part for the given endpoint. |
UMOMessage |
AbstractOutboundRouter.send(UMOSession session,
UMOMessage message,
UMOEndpoint endpoint)
|
protected void |
AbstractOutboundRouter.setMessageProperties(UMOSession session,
UMOMessage message,
UMOEndpoint endpoint)
|
Uses of UMOEndpoint in org.mule.routing.response |
---|
Methods in org.mule.routing.response that return UMOEndpoint | |
---|---|
UMOEndpoint |
ResponseRouterCollection.getEndpoint(String name)
|
Methods in org.mule.routing.response with parameters of type UMOEndpoint | |
---|---|
void |
ResponseRouterCollection.addEndpoint(UMOEndpoint endpoint)
|
boolean |
ResponseRouterCollection.removeEndpoint(UMOEndpoint endpoint)
|
Uses of UMOEndpoint in org.mule.tck |
---|
Methods in org.mule.tck that return UMOEndpoint | |
---|---|
static UMOEndpoint |
MuleTestUtils.getTestEndpoint(String name,
String type)
|
static UMOEndpoint |
AbstractMuleTestCase.getTestEndpoint(String name,
String type)
|
static UMOEndpoint |
MuleTestUtils.getTestSchemeMetaInfoEndpoint(String name,
String type,
String protocol)
|
Uses of UMOEndpoint in org.mule.tck.functional |
---|
Methods in org.mule.tck.functional that return UMOEndpoint | |
---|---|
protected UMOEndpoint |
AbstractProviderFunctionalTestCase.createInboundEndpoint()
Deprecated. Implementing tests can overide this to add further configuration to the inbound endpoint |
protected UMOEndpoint |
AbstractProviderFunctionalTestCase.createOutboundEndpoint()
Deprecated. Implementing tests can overide this to add further configuration to the outbound endpoint |
Uses of UMOEndpoint in org.mule.tck.providers |
---|
Fields in org.mule.tck.providers declared as UMOEndpoint | |
---|---|
protected UMOEndpoint |
AbstractMessageReceiverTestCase.endpoint
|
Methods in org.mule.tck.providers that return UMOEndpoint | |
---|---|
abstract UMOEndpoint |
AbstractMessageReceiverTestCase.getEndpoint()
Implementations of this method should ensure that the correct connector is set on the endpoint |
Uses of UMOEndpoint in org.mule.tck.testmodels.mule |
---|
Methods in org.mule.tck.testmodels.mule that return UMOEndpoint | |
---|---|
UMOEndpoint |
TestCatchAllStrategy.getEndpoint()
|
Methods in org.mule.tck.testmodels.mule with parameters of type UMOEndpoint | |
---|---|
UMOMessageReceiver |
TestConnector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
void |
TestConnector.destroyReceiver(UMOMessageReceiver receiver,
UMOEndpoint endpoint)
|
void |
TestCatchAllStrategy.setEndpoint(UMOEndpoint endpoint)
|
Uses of UMOEndpoint in org.mule.umo |
---|
Methods in org.mule.umo that return UMOEndpoint | |
---|---|
UMOEndpoint |
UMOImmutableDescriptor.getInboundEndpoint()
Deprecated. use getInboundRouter() instead (see MULE-506) |
UMOEndpoint |
UMOImmutableDescriptor.getOutboundEndpoint()
Deprecated. use getOutboundRouter() instead (see MULE-506) |
Methods in org.mule.umo with parameters of type UMOEndpoint | |
---|---|
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. |
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 |
UMODescriptor.setInboundEndpoint(UMOEndpoint endpoint)
Deprecated. use setInboundRouter() instead (see MULE-506) |
void |
UMODescriptor.setOutboundEndpoint(UMOEndpoint endpoint)
Deprecated. use setOutboundRouter() instead (see MULE-506) |
Uses of UMOEndpoint in org.mule.umo.manager |
---|
Methods in org.mule.umo.manager that return UMOEndpoint | |
---|---|
UMOEndpoint |
UMOManager.lookupEndpoint(String logicalName)
Getter for a global endpoint. |
Methods in org.mule.umo.manager with parameters of type UMOEndpoint | |
---|---|
void |
UMOManager.registerEndpoint(UMOEndpoint endpoint)
Registers a shared/global endpoint with the MuleManager . |
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 | |
---|---|
UMOMessageReceiver |
UMOConnector.registerListener(UMOComponent component,
UMOEndpoint endpoint)
This creates a UMOMessageReceiver associated with this endpoint
and registers it with the connector. |
void |
UMOMessageReceiver.setEndpoint(UMOEndpoint 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 |
UMONestedRouter.getEndpoint()
|
UMOEndpoint |
UMOResponseRouterCollection.getEndpoint(String name)
|
UMOEndpoint |
UMOInboundRouterCollection.getEndpoint(String name)
|
UMOEndpoint[] |
UMOOutboundRouterCollection.getEndpointsForMessage(UMOMessage message)
A helper method for finding out which endpoints a message would be routed to without actually routing the the message. |
Methods in org.mule.umo.routing with parameters of type UMOEndpoint | |
---|---|
void |
UMOResponseRouterCollection.addEndpoint(UMOEndpoint endpoint)
|
void |
UMOOutboundRouter.addEndpoint(UMOEndpoint endpoint)
Adds an endpoint to this router |
void |
UMOInboundRouterCollection.addEndpoint(UMOEndpoint endpoint)
|
boolean |
UMOResponseRouterCollection.removeEndpoint(UMOEndpoint endpoint)
|
boolean |
UMOInboundRouterCollection.removeEndpoint(UMOEndpoint endpoint)
|
void |
UMORouterCatchAllStrategy.setEndpoint(UMOEndpoint endpoint)
|
void |
UMONestedRouter.setEndpoint(UMOEndpoint endpoint)
|
Uses of UMOEndpoint in org.mule.util |
---|
Methods in org.mule.util that return UMOEndpoint | |
---|---|
static UMOEndpoint |
MuleObjectHelper.getEndpointByEndpointUri(String endpointUri,
boolean wildcardMatch)
|
static UMOEndpoint |
MuleObjectHelper.getEndpointByProtocol(String protocol)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |