|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use UMOComponent | |
org.mule.config.builders | |
org.mule.impl | The Mule implementation of the Universal Message Objects(tm) API specification. |
org.mule.providers | Contains Abstract classes providing common functionality for all Mule providers. |
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.http | Provides http transport including proxy support. |
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.service | Provides SPI support for building mule connectors and providers using service descriptors. |
org.mule.providers.servlet | Allows the Mule server to easily interact with a servlet engine. |
org.mule.providers.soap | |
org.mule.providers.soap.axis | Provides an Axis soap transport for Mule. |
org.mule.providers.soap.glue | Provides an Glue soap transport for Mule. |
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.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.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.model | Contains the interfaces for the Model and supporting objects such as the ContainerContext, CompoenntResolver, EntryPointResolver, etc. |
org.mule.umo.provider | Contains the interfaces that comprise a provider implementation. |
Uses of UMOComponent in org.mule.config.builders |
Methods in org.mule.config.builders that return UMOComponent | |
UMOComponent |
QuickConfigurationBuilder.registerComponent(java.lang.String implementation,
java.lang.String name,
UMOEndpointURI inboundEndpointUri)
Registers a java object as a Umo pcomponent that listens for events on the given url. |
UMOComponent |
QuickConfigurationBuilder.registerComponent(java.lang.String implementation,
java.lang.String name,
UMOEndpointURI inboundEndpointUri,
java.util.Map properties)
Registers a java object as a Umo pcomponent that listens for events on the given url. |
UMOComponent |
QuickConfigurationBuilder.registerComponent(java.lang.String implementation,
java.lang.String name,
UMOEndpointURI inboundEndpointUri,
UMOEndpointURI outboundEndpointUri)
Registers a java object as a Umo pcomponent that listens for and sends events on the given urls. |
UMOComponent |
QuickConfigurationBuilder.registerComponent(java.lang.String implementation,
java.lang.String name,
UMOEndpointURI inboundEndpointUri,
UMOEndpointURI outboundEndpointUri,
java.util.Map properties)
Registers a java object as a Umo pcomponent that listens for and sends events on the given urls. |
Uses of UMOComponent in org.mule.impl |
Classes in org.mule.impl that implement UMOComponent | |
class |
MuleComponent
MuleComponent manages the interaction and distribution of
events for a Mule-managed component. |
Methods in org.mule.impl that return UMOComponent | |
UMOComponent |
MuleSession.getComponent()
|
UMOComponent |
MuleModel.registerComponent(UMODescriptor descriptor)
|
UMOComponent |
MuleEvent.getComponent()
Gets the recipient component of this event |
UMOComponent |
DefaultComponentExceptionStrategy.getComponent()
|
Methods in org.mule.impl with parameters of type UMOComponent | |
protected void |
MuleModel.registerListeners(UMOComponent component)
|
protected void |
MuleModel.unregisterListeners(UMOComponent component)
|
void |
DefaultComponentExceptionStrategy.setComponent(UMOComponent component)
|
Constructors in org.mule.impl with parameters of type UMOComponent | |
MuleSession(UMOComponent component,
UMOTransaction transaction)
|
|
MuleEvent(UMOMessage message,
UMOEndpoint endpoint,
UMOComponent component,
UMOEvent previousEvent)
|
|
DefaultComponentExceptionStrategy(UMOComponent component)
Constructor |
Uses of UMOComponent in org.mule.providers |
Fields in org.mule.providers declared as UMOComponent | |
protected UMOComponent |
AbstractMessageReceiver.component
The Component with which this receiver is associated with |
Methods in org.mule.providers that return UMOComponent | |
UMOComponent |
AbstractMessageReceiver.getComponent()
|
Methods in org.mule.providers with parameters of type UMOComponent | |
UMOMessageReceiver |
AbstractServiceEnabledConnector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
void |
AbstractMessageReceiver.create(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
void |
AbstractMessageReceiver.setComponent(UMOComponent component)
|
UMOMessageReceiver |
AbstractConnector.registerListener(UMOComponent component,
UMOEndpoint endpoint)
|
protected java.lang.Object |
AbstractConnector.getReceiverKey(UMOComponent component,
UMOEndpoint endpoint)
|
void |
AbstractConnector.unregisterListener(UMOComponent component,
UMOEndpoint endpoint)
|
abstract UMOMessageReceiver |
AbstractConnector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
Constructors in org.mule.providers with parameters of type UMOComponent | |
TransactedPollingMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
java.lang.Long frequency)
|
|
PollingMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
java.lang.Long frequency)
|
Uses of UMOComponent in org.mule.providers.email |
Methods in org.mule.providers.email with parameters of type UMOComponent | |
UMOMessageReceiver |
SmtpConnector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
UMOMessageReceiver |
Pop3Connector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
UMOMessageReceiver |
MailConnector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
Constructors in org.mule.providers.email with parameters of type UMOComponent | |
MailMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
Folder folder,
java.lang.Long checkFrequency,
java.lang.String backupFolder)
|
Uses of UMOComponent in org.mule.providers.file |
Methods in org.mule.providers.file with parameters of type UMOComponent | |
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 |
Constructors in org.mule.providers.file with parameters of type UMOComponent | |
FileMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
java.io.File readDir,
java.io.File moveDir,
java.lang.String moveToPattern,
java.lang.Long frequency)
|
Uses of UMOComponent in org.mule.providers.http |
Constructors in org.mule.providers.http with parameters of type UMOComponent | |
HttpsMessageReceiver(AbstractConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
|
HttpMessageReceiver(AbstractConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOComponent in org.mule.providers.jdbc |
Methods in org.mule.providers.jdbc with parameters of type UMOComponent | |
UMOMessageReceiver |
JdbcConnector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
Constructors in org.mule.providers.jdbc with parameters of type UMOComponent | |
JdbcMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
java.lang.String readStmt,
java.lang.String ackStmt)
|
Uses of UMOComponent in org.mule.providers.jms |
Methods in org.mule.providers.jms with parameters of type UMOComponent | |
protected java.lang.Object |
JmsConnector.getReceiverKey(UMOComponent component,
UMOEndpoint endpoint)
|
Constructors in org.mule.providers.jms with parameters of type UMOComponent | |
JmsMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOComponent in org.mule.providers.multicast |
Constructors in org.mule.providers.multicast with parameters of type UMOComponent | |
MulticastMessageReceiver(AbstractConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOComponent in org.mule.providers.service |
Methods in org.mule.providers.service with parameters of type UMOComponent | |
UMOMessageReceiver |
ConnectorServiceDescriptor.createMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
UMOMessageReceiver |
ConnectorServiceDescriptor.createMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
java.lang.Object[] args)
|
Uses of UMOComponent in org.mule.providers.servlet |
Constructors in org.mule.providers.servlet with parameters of type UMOComponent | |
ServletMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOComponent in org.mule.providers.soap |
Methods in org.mule.providers.soap with parameters of type UMOComponent | |
static java.lang.Class[] |
ServiceProxy.getInterfacesForComponent(UMOComponent component)
|
Uses of UMOComponent in org.mule.providers.soap.axis |
Methods in org.mule.providers.soap.axis with parameters of type UMOComponent | |
protected java.lang.Object |
AxisConnector.getReceiverKey(UMOComponent component,
UMOEndpoint endpoint)
|
UMOMessageReceiver |
AxisConnector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
Constructors in org.mule.providers.soap.axis with parameters of type UMOComponent | |
AxisMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOComponent in org.mule.providers.soap.glue |
Methods in org.mule.providers.soap.glue with parameters of type UMOComponent | |
UMOMessageReceiver |
GlueConnector.registerListener(UMOComponent component,
UMOEndpoint endpoint)
|
Constructors in org.mule.providers.soap.glue with parameters of type UMOComponent | |
GlueMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
boolean createServer)
|
Uses of UMOComponent in org.mule.providers.ssl |
Constructors in org.mule.providers.ssl with parameters of type UMOComponent | |
SslMessageReceiver(AbstractConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOComponent in org.mule.providers.stream |
Methods in org.mule.providers.stream with parameters of type UMOComponent | |
UMOMessageReceiver |
SystemStreamConnector.registerListener(UMOComponent component,
UMOEndpoint endpoint)
|
UMOMessageReceiver |
StreamConnector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
Constructors in org.mule.providers.stream with parameters of type UMOComponent | |
StreamMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
java.io.InputStream stream,
java.lang.Long checkFrequency)
|
Uses of UMOComponent in org.mule.providers.tcp |
Constructors in org.mule.providers.tcp with parameters of type UMOComponent | |
TcpMessageReceiver(AbstractConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOComponent in org.mule.providers.udp |
Constructors in org.mule.providers.udp with parameters of type UMOComponent | |
UdpMessageReceiver(AbstractConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOComponent in org.mule.providers.vm |
Methods in org.mule.providers.vm with parameters of type UMOComponent | |
UMOMessageReceiver |
VMConnector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
Constructors in org.mule.providers.vm with parameters of type UMOComponent | |
VMMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
BoundedPersistentQueue queue)
|
Uses of UMOComponent in org.mule.providers.xmpp |
Constructors in org.mule.providers.xmpp with parameters of type UMOComponent | |
XmppMessageReceiver(AbstractConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
Uses of UMOComponent in org.mule.tck |
Methods in org.mule.tck with parameters of type UMOComponent | |
static UMOSession |
AbstractMuleTestCase.getTestSession(UMOComponent component)
|
Uses of UMOComponent in org.mule.tck.functional |
Methods in org.mule.tck.functional that return UMOComponent | |
UMOComponent |
AbstractProviderFunctionalTestCase.initialiseComponent(UMODescriptor descriptor,
byte txBeginAction,
byte txCommitAction,
EventCallback callback)
|
Uses of UMOComponent in org.mule.tck.providers |
Fields in org.mule.tck.providers declared as UMOComponent | |
protected UMOComponent |
AbstractMessageReceiverTestCase.component
|
Uses of UMOComponent in org.mule.umo |
Methods in org.mule.umo that return UMOComponent | |
UMOComponent |
UMOSession.getComponent()
Returns the UMOComponent associated with the session in its current execution |
UMOComponent |
UMOEvent.getComponent()
Retrieves the component for the current event |
Constructors in org.mule.umo with parameters of type UMOComponent | |
ComponentException(java.lang.String message,
UMOComponent component)
|
|
ComponentException(java.lang.String message,
UMOComponent component,
java.lang.Throwable cause)
|
Uses of UMOComponent in org.mule.umo.model |
Methods in org.mule.umo.model that return UMOComponent | |
UMOComponent |
UMOModel.registerComponent(UMODescriptor descriptor)
Registers a UMODescriptor with the MuleManager . |
Uses of UMOComponent in org.mule.umo.provider |
Methods in org.mule.umo.provider that return UMOComponent | |
UMOComponent |
UMOMessageReceiver.getComponent()
|
Methods in org.mule.umo.provider with parameters of type UMOComponent | |
void |
UMOMessageReceiver.create(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
Creates the Message Receiver |
void |
UMOMessageReceiver.setComponent(UMOComponent component)
|
UMOMessageReceiver |
UMOConnector.registerListener(UMOComponent component,
UMOEndpoint endpoint)
This creates a UMOMessageReceiver associated with this endpoint and registers it
with the endpoint |
void |
UMOConnector.unregisterListener(UMOComponent component,
UMOEndpoint endpoint)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |