Package | Description |
---|---|
org.mule.api.endpoint |
Endpoint interfaces.
|
org.mule.api.registry | |
org.mule.api.transport |
Contains the interfaces that comprise a provider implementation.
|
org.mule.config.spring |
Support claases for Load Mule from Spring.
|
org.mule.endpoint |
Implemtation of Mule endpoint uris.
|
org.mule.module.management.mbean |
Jmx Management beans for mule components, the model and the Mule server.
|
org.mule.registry | |
org.mule.transport |
Contains Abstract classes providing common functionality for all Mule providers.
|
org.mule.transport.bpm | |
org.mule.transport.ejb | |
org.mule.transport.http |
Provides http transport including proxy support.
|
org.mule.transport.jms |
Provides Jms transport connectivity with support for all Jms features.
|
org.mule.transport.jms.activemq |
Provides Jms connectivity with ActiveMQ-specific workarounds and improvements.
|
org.mule.transport.jms.weblogic |
Provides Jms connectivity with Weblogic-specific workarounds and improvements.
|
org.mule.transport.jms.websphere |
Provides Jms connectivity with Websphere-specific workarounds and improvements.
|
org.mule.transport.jnp | |
org.mule.transport.multicast |
IP multicast connectivity for Mule.
|
org.mule.transport.quartz | |
org.mule.transport.rmi | |
org.mule.transport.service |
Provides SPI support for building mule connectors and providers using service descriptors.
|
org.mule.transport.servlet | |
org.mule.transport.ssl |
Provides tcp connectivity over Ssl for Mule.
|
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.util |
Common helper classes for reading/writing files setting bean properties and SPI helpers.
|
Modifier and Type | Method and Description |
---|---|
Connector |
ImmutableEndpoint.getConnector()
The endpoint that will be used to send the message on.
|
Modifier and Type | Method and Description |
---|---|
void |
EndpointBuilder.setConnector(Connector connector) |
Modifier and Type | Method and Description |
---|---|
Connector |
Registry.lookupConnector(String name) |
Modifier and Type | Method and Description |
---|---|
void |
Registry.registerConnector(Connector connector) |
Modifier and Type | Method and Description |
---|---|
Connector |
ConnectorException.getConnector() |
Connector |
MessageDispatcher.getConnector()
Gets the connector for this dispatcher
|
Connector |
MessageReceiver.getConnector() |
Connector |
MessageRequester.getConnector()
Gets the connector for this dispatcher
|
Modifier and Type | Method and Description |
---|---|
void |
MessageReceiver.setConnector(Connector connector) |
Constructor and Description |
---|
ConnectorException(Message message,
Connector connector) |
ConnectorException(Message message,
Connector connector,
Throwable cause) |
Modifier and Type | Method and Description |
---|---|
void |
SpringRegistry.registerConnector(Connector connector) |
Modifier and Type | Field and Description |
---|---|
protected Connector |
AbstractEndpointBuilder.connector |
Modifier and Type | Method and Description |
---|---|
Connector |
AbstractEndpoint.getConnector() |
Connector |
DynamicURIInboundEndpoint.getConnector() |
protected Connector |
AbstractEndpointBuilder.getConnector() |
Connector |
DynamicURIOutboundEndpoint.getConnector() |
protected Connector |
AbstractEndpointBuilder.getDefaultConnector() |
Modifier and Type | Method and Description |
---|---|
protected ConnectionStrategy |
AbstractEndpointBuilder.getConnectionStrategy(Connector connector) |
protected ConnectionStrategy |
AbstractEndpointBuilder.getDefaultConnectionStrategy(Connector connector) |
protected boolean |
AbstractEndpointBuilder.getDefaultDeleteUnacceptedMessages(Connector connector) |
protected String |
AbstractEndpointBuilder.getDefaultEndpointEncoding(Connector connector) |
protected Filter |
AbstractEndpointBuilder.getDefaultFilter(Connector connector) |
protected List |
AbstractEndpointBuilder.getDefaultInboundTransformers(Connector connector) |
protected String |
AbstractEndpointBuilder.getDefaultInitialState(Connector connector) |
protected List |
AbstractEndpointBuilder.getDefaultOutboundTransformers(Connector connector) |
protected boolean |
AbstractEndpointBuilder.getDefaultRemoteSync(Connector connector) |
protected int |
AbstractEndpointBuilder.getDefaultRemoteSyncTimeout(Connector connector) |
protected List |
AbstractEndpointBuilder.getDefaultResponseTransformers(Connector connector) |
protected boolean |
AbstractEndpointBuilder.getDefaultSynchronous(Connector connector,
String protocol) |
protected boolean |
AbstractEndpointBuilder.getDeleteUnacceptedMessages(Connector connector) |
protected String |
AbstractEndpointBuilder.getEndpointEncoding(Connector connector) |
protected Filter |
AbstractEndpointBuilder.getFilter(Connector connector) |
protected List |
AbstractEndpointBuilder.getInboundEndpointResponseTransformers(Connector connector,
EndpointURI endpointURI) |
protected List |
AbstractEndpointBuilder.getInboundTransformers(Connector connector,
EndpointURI endpointURI) |
protected String |
AbstractEndpointBuilder.getInitialState(Connector connector) |
protected List |
AbstractEndpointBuilder.getOutboundEndpointResponseTransformers(Connector connector,
EndpointURI endpointURI) |
protected List |
AbstractEndpointBuilder.getOutboundTransformers(Connector connector,
EndpointURI endpointURI) |
protected boolean |
AbstractEndpointBuilder.getRemoteSync(Connector connector) |
protected int |
AbstractEndpointBuilder.getRemoteSyncTimeout(Connector connector) |
protected boolean |
AbstractEndpointBuilder.getSynchronous(Connector connector,
EndpointURI endpointURI) |
void |
AbstractEndpointBuilder.setConnector(Connector connector) |
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) |
Constructor and Description |
---|
ConnectorService(Connector connector) |
Modifier and Type | Method and Description |
---|---|
Connector |
AbstractRegistry.lookupConnector(String name) |
Modifier and Type | Method and Description |
---|---|
void |
TransientRegistry.registerConnector(Connector connector) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractConnector
AbstractConnector provides base functionality for all connectors
provided with Mule. |
class |
AbstractJndiConnector
This class acts as common baseclass for both Rmi & EjbConnector Resolves Jndi root for connector usage
|
Modifier and Type | Method and Description |
---|---|
Connector |
AbstractMessageReceiver.getConnector() |
Connector |
AbstractConnectable.getConnector() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractMessageReceiver.setConnector(Connector connector) |
Constructor and Description |
---|
AbstractMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint)
Creates the Message Receiver
|
AbstractPollingMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
TransactedPollingMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
TransactedPollingMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint,
long frequency)
Deprecated.
please use
#TransactedPollingMessageReceiver(Connector,Service,InboundEndpoint,long,TimeUnit)
instead |
Modifier and Type | Class and Description |
---|---|
class |
ProcessConnector
The BPM provider allows Mule events to initiate and/or advance processes in an
external or embedded Business Process Management System (BPMS).
|
Constructor and Description |
---|
ProcessMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
Modifier and Type | Class and Description |
---|---|
class |
EjbConnector
Provides Connection configurstion for EJB endpoints
|
Constructor and Description |
---|
EjbMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint,
long frequency) |
Modifier and Type | Class and Description |
---|---|
class |
HttpConnector
HttpConnector provides a way of receiving and sending http requests
and responses. |
class |
HttpPollingConnector
The HttpPollingConnectors allows for inbound Http endpoints to be configured with an address which it shall use
to poll for a result.
|
class |
HttpsConnector
HttpsConnector provides Secure http connectivity on top of what is already provided with the
Mule HttpConnector . |
class |
HttpsPollingConnector
HttpsPollingConnector provides Secure http connectivity on top of what is already provided with the
Mule HttpPollingConnector . |
Constructor and Description |
---|
HttpMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
HttpsMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
PollingHttpMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
Modifier and Type | Class and Description |
---|---|
class |
JmsConnector
JmsConnector is a JMS 1.0.2b compliant connector that can be used
by a Mule endpoint. |
Constructor and Description |
---|
JmsMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
MultiConsumerJmsMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
SingleJmsMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
TransactedSingleResourceJmsMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
XaTransactedJmsMessageReceiver(Connector umoConnector,
Service service,
InboundEndpoint endpoint) |
Modifier and Type | Class and Description |
---|---|
class |
ActiveMQJmsConnector
ActiveMQ 4.x-specific JMS connector.
|
class |
ActiveMQXAJmsConnector |
Modifier and Type | Class and Description |
---|---|
class |
WeblogicJmsConnector
Weblogic-specific JMS connector.
|
Modifier and Type | Class and Description |
---|---|
class |
WebsphereJmsConnector
Websphere-specific JMS connector.
|
Constructor and Description |
---|
WebsphereTransactedJmsMessageReceiver(Connector umoConnector,
Service service,
InboundEndpoint endpoint) |
Modifier and Type | Class and Description |
---|---|
class |
JnpConnector
JnpConnector uses the Java Naming protocol to bind to remote
objects |
Modifier and Type | Class and Description |
---|---|
class |
MulticastConnector
MulticastConnector can dispatch mule events using ip multicasting |
Modifier and Type | Class and Description |
---|---|
class |
QuartzConnector
Creates a connection to a Quartz scheduler.
|
Constructor and Description |
---|
QuartzMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
Modifier and Type | Class and Description |
---|---|
class |
RmiConnector
RmiConnector can bind or send to a given RMI port on a given host. |
Constructor and Description |
---|
RmiCallbackMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
RmiMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint,
long frequency) |
Modifier and Type | Method and Description |
---|---|
Connector |
DefaultTransportServiceDescriptor.createConnector() |
Connector |
TransportServiceDescriptor.createConnector() |
static Connector |
TransportFactory.createConnector(EndpointURI url,
MuleContext muleContext)
Creates an uninitialied connector from the provided MuleEndpointURI.
|
static Connector |
TransportFactory.getConnectorByProtocol(String protocol) |
static Connector |
TransportFactory.getOrCreateConnectorByProtocol(EndpointURI uri,
MuleContext muleContext)
Returns an initialized connector.
|
static Connector |
TransportFactory.getOrCreateConnectorByProtocol(ImmutableEndpoint endpoint,
MuleContext muleContext) |
Modifier and Type | Method and Description |
---|---|
MessageReceiver |
DefaultTransportServiceDescriptor.createMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
MessageReceiver |
TransportServiceDescriptor.createMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
MessageReceiver |
DefaultTransportServiceDescriptor.createMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint,
Object[] args) |
MessageReceiver |
TransportServiceDescriptor.createMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint,
Object[] args) |
Modifier and Type | Class and Description |
---|---|
class |
ServletConnector
ServletConnector is a channel adapter between Mule and a servlet
engine. |
Constructor and Description |
---|
ServletMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
Modifier and Type | Class and Description |
---|---|
class |
SslConnector
SslConnector provides a connector for SSL connections. |
class |
TlsConnector
TlsConnector Provides TLS connections |
Constructor and Description |
---|
SslMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
Modifier and Type | Class and Description |
---|---|
class |
PromptStdioConnector
PromptStdioConnector connects to the System streams in and out by
default and add some basic fuctionality for writing out prompt messages. |
class |
StdioConnector
StdioConnector can send and receive Mule events over IO streams. |
Modifier and Type | Method and Description |
---|---|
Connector |
PromptStdioConnector.getConnector() |
Constructor and Description |
---|
StdioMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint,
long checkFrequency) |
Modifier and Type | Class and Description |
---|---|
class |
TcpConnector
TcpConnector can bind or sent to a given TCP port on a given host. |
Constructor and Description |
---|
TcpMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
Modifier and Type | Class and Description |
---|---|
class |
UdpConnector
UdpConnector can send and receive Mule events as Datagram packets. |
Constructor and Description |
---|
UdpMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
Modifier and Type | Class and Description |
---|---|
class |
VMConnector
VMConnector A simple endpoint wrapper to allow a Mule service to
be accessed from an endpoint |
Constructor and Description |
---|
VMMessageReceiver(Connector connector,
Service service,
InboundEndpoint endpoint) |
Modifier and Type | Method and Description |
---|---|
static String |
ObjectNameHelper.getConnectorName(Connector connector) |
Copyright © 2003–2013 MuleSource, Inc.. All rights reserved.