Package | Description |
---|---|
org.mule |
The Mule implementation of the Universal Message Objects(tm) API specification.
|
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.endpoint |
Endpoint interfaces.
|
org.mule.api.transport |
Contains the interfaces that comprise a provider implementation.
|
org.mule.config.i18n |
Internationalisation support for Mule messages and exception messages.
|
org.mule.endpoint |
Implemtation of Mule endpoint uris.
|
org.mule.message |
Wire message implementations.
|
org.mule.module.client |
Simple interface for Mule clients to send and receive events from local or remote Mule Servers.
|
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.service |
Provides SPI support for building mule connectors and providers using service descriptors.
|
org.mule.transport.vm |
A connector implementation allowing events to be passed between Mule sessions via in-memory queues.
|
org.mule.util |
Common helper classes for reading/writing files setting bean properties and SPI helpers.
|
Modifier and Type | Method and Description |
---|---|
EndpointURI |
DefaultMuleEventContext.getEndpointURI() |
Modifier and Type | Method and Description |
---|---|
void |
DefaultMuleEventContext.dispatchEvent(MuleMessage message,
EndpointURI endpointUri)
Depending on the session state this methods either Passes an event
asynchronously to the next available Mule UMO in the pool or via the
endpointUri configured for the event
|
MuleMessage |
DefaultMuleEventContext.requestEvent(EndpointURI endpointUri,
long timeout)
Requests a synchronous receive of an event on the service
|
MuleMessage |
DefaultMuleEventContext.sendEvent(MuleMessage message,
EndpointURI endpointUri)
Depending on the session state this methods either Passes an event
synchronously to the next available Mule UMO in the pool or via the
endpointUri configured for the event
|
FutureMessageResult |
DefaultMuleEventContext.sendEventAsync(MuleMessage message,
EndpointURI endpointUri,
int timeout)
sends an event request via the configured outbound router for this service.
|
Modifier and Type | Method and Description |
---|---|
EndpointURI |
MuleEventContext.getEndpointURI()
Returns a reference to the Endpoint Uri for this context This is the endpoint
on which the event was received
|
Modifier and Type | Method and Description |
---|---|
void |
MuleEventContext.dispatchEvent(MuleMessage message,
EndpointURI 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
|
MuleMessage |
MuleEventContext.requestEvent(EndpointURI endpoint,
long timeout)
Requests a synchronous receive of an event on the service.
|
MuleMessage |
MuleEventContext.sendEvent(MuleMessage message,
EndpointURI endpoint)
Depending on the session state this methods either Passes an event
synchronously to the next available Mule UMO in the pool or via the endpoint
configured for the event
|
FutureMessageResult |
MuleEventContext.sendEventAsync(MuleMessage message,
EndpointURI endpoint,
int timeout)
sends an event request via the configured outbound router for this service.
|
Modifier and Type | Method and Description |
---|---|
EndpointURI |
EndpointURIBuilder.build(URI uri) |
EndpointURI |
ImmutableEndpoint.getEndpointURI()
This specifess the communication endpointUri.
|
Modifier and Type | Method and Description |
---|---|
InboundEndpoint |
EndpointFactory.getInboundEndpoint(EndpointURI endpointUri)
Deprecated.
|
OutboundEndpoint |
EndpointFactory.getOutboundEndpoint(EndpointURI endpointUri)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
EndpointURI |
MessageReceiver.getEndpointURI()
The endpointUri that this receiver listens on
|
Modifier and Type | Method and Description |
---|---|
static Message |
CoreMessages.authDeniedOnEndpoint(EndpointURI endpointURI) |
static Message |
CoreMessages.failedToCreateConnectorFromUri(EndpointURI uri) |
static Message |
CoreMessages.listenerAlreadyRegistered(EndpointURI endpointUri) |
Modifier and Type | Class and Description |
---|---|
class |
MuleEndpointURI
MuleEndpointURI is used to determine how a message is sent of
received. |
Modifier and Type | Method and Description |
---|---|
EndpointURI |
AbstractEndpointURIBuilder.build(URI uri) |
EndpointURI |
URIBuilder.getEndpoint() |
EndpointURI |
AbstractEndpoint.getEndpointURI() |
EndpointURI |
DynamicURIInboundEndpoint.getEndpointURI() |
EndpointURI |
DynamicURIOutboundEndpoint.getEndpointURI() |
Modifier and Type | Method and Description |
---|---|
protected ImmutableEndpoint |
DefaultEndpointFactory.getEndpoint(EndpointURI uri,
org.mule.endpoint.DefaultEndpointFactory.EndpointSource source) |
InboundEndpoint |
DefaultEndpointFactory.getInboundEndpoint(EndpointURI uri) |
protected List |
AbstractEndpointBuilder.getInboundEndpointResponseTransformers(Connector connector,
EndpointURI endpointURI) |
protected List |
AbstractEndpointBuilder.getInboundTransformers(Connector connector,
EndpointURI endpointURI) |
protected String |
AbstractEndpointBuilder.getName(EndpointURI endpointURI) |
OutboundEndpoint |
DefaultEndpointFactory.getOutboundEndpoint(EndpointURI uri) |
protected List |
AbstractEndpointBuilder.getOutboundEndpointResponseTransformers(Connector connector,
EndpointURI endpointURI) |
protected List |
AbstractEndpointBuilder.getOutboundTransformers(Connector connector,
EndpointURI endpointURI) |
protected boolean |
AbstractEndpointBuilder.getSynchronous(Connector connector,
EndpointURI endpointURI) |
void |
DynamicURIInboundEndpoint.setEndpointURI(EndpointURI dynamicEndpointURI) |
void |
DynamicURIOutboundEndpoint.setEndpointURI(EndpointURI dynamicEndpointURI) |
Constructor and Description |
---|
AbstractEndpoint(Connector connector,
EndpointURI endpointUri,
List transformers,
List responseTransformers,
String name,
Map properties,
TransactionConfig transactionConfig,
Filter filter,
boolean deleteUnacceptedMessages,
EndpointSecurityFilter securityFilter,
boolean synchronous,
boolean remoteSync,
int remoteSyncTimeout,
String initialState,
String endpointEncoding,
MuleContext muleContext,
ConnectionStrategy connectionStrategy) |
DefaultInboundEndpoint(Connector connector,
EndpointURI endpointUri,
List transformers,
List responseTransformers,
String name,
Map properties,
TransactionConfig transactionConfig,
Filter filter,
boolean deleteUnacceptedMessage,
EndpointSecurityFilter securityFilter,
boolean synchronous,
boolean remoteSync,
int remoteSyncTimeout,
String initialState,
String endpointEncoding,
MuleContext muleContext,
ConnectionStrategy connectionStrategy) |
DefaultOutboundEndpoint(Connector connector,
EndpointURI endpointUri,
List transformers,
List responseTransformers,
String name,
Map properties,
TransactionConfig transactionConfig,
Filter filter,
boolean deleteUnacceptedMessage,
EndpointSecurityFilter securityFilter,
boolean synchronous,
boolean remoteSync,
int remoteSyncTimeout,
String initialState,
String endpointEncoding,
MuleContext muleContext,
ConnectionStrategy connectionStrategy) |
DynamicURIInboundEndpoint(InboundEndpoint endpoint,
EndpointURI dynamicEndpointURI) |
DynamicURIOutboundEndpoint(OutboundEndpoint endpoint,
EndpointURI dynamicEndpointURI) |
EndpointURIEndpointBuilder(EndpointURI endpointURI,
MuleContext muleContext)
Deprecated.
|
MuleEndpointURI(EndpointURI endpointUri) |
MuleEndpointURI(EndpointURI endpointUri,
String filterAddress) |
URIBuilder(EndpointURI endpointURI) |
Modifier and Type | Method and Description |
---|---|
EndpointURI |
ExceptionMessage.getEndpoint() |
Constructor and Description |
---|
ExceptionMessage(Object message,
Throwable exception,
String componentName,
EndpointURI endpointUri) |
Modifier and Type | Method and Description |
---|---|
void |
MuleClient.registerComponent(Object component,
String name,
EndpointURI listenerEndpoint)
Deprecated.
Use the RegistryContext to get the registry and register the
service there
|
Modifier and Type | Method and Description |
---|---|
protected OutboundEndpoint |
AbstractRecipientList.getRecipientEndpointFromUri(EndpointURI uri) |
Modifier and Type | Method and Description |
---|---|
EndpointURI |
AbstractMessageReceiver.getEndpointURI() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractConnector.initialiseFromUrl(EndpointURI endpointUri)
When this connector is created via the
TransportFactory the endpoint used to
determine the connector type is passed to this method so that any properties
set on the endpoint that can be used to initialise the connector are made
available. |
Modifier and Type | Method and Description |
---|---|
static Connector |
TransportFactory.createConnector(EndpointURI url,
MuleContext muleContext)
Creates an uninitialied connector from the provided MuleEndpointURI.
|
static Connector |
TransportFactory.getOrCreateConnectorByProtocol(EndpointURI uri,
MuleContext muleContext)
Returns an initialized connector.
|
Modifier and Type | Method and Description |
---|---|
protected MessageReceiver |
VMConnector.getReceiverByEndpoint(EndpointURI endpointUri) |
Modifier and Type | Method and Description |
---|---|
static String |
ObjectNameHelper.getEndpointName(EndpointURI endpointUri) |
Copyright © 2003–2013 MuleSource, Inc.. All rights reserved.