|
|||||||||||
| 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.impl | The Mule implementation of the Universal Message Objects(tm) API specification. |
| org.mule.impl.endpoint | Implemtation of Mule endpoint uris. |
| org.mule.providers | Contains Abstract classes providing common functionality for all Mule providers. |
| org.mule.providers.service | Provides SPI support for building mule connectors and providers using service descriptors. |
| 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.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.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. Any endpoints returned from this method can be modified, as they are clones of the registered endpoints. |
UMOEndpoint |
MuleManager.lookupEndpointByAddress(String address)
{@inheritDoc} |
| 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,
UMOFilter filter)
|
UMOEndpoint |
QuickConfigurationBuilder.createEndpoint(String uri,
String name,
boolean inbound,
String transformers,
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 | |
UMOComponent |
QuickConfigurationBuilder.registerComponent(String implementation,
String name,
UMOEndpoint inEndpoint,
UMOEndpoint outEndpoint,
Map properties)
|
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 |
| 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 | |
UMOEndpoint |
ImmutableMuleDescriptor.getInboundEndpoint()
The inbound Provider to use when receiveing an event. |
UMOEndpoint |
ImmutableMuleDescriptor.getOutboundEndpoint()
The outbound Provider to use when sending an event. |
static UMOEndpoint |
ImmutableMuleEndpoint.createEndpointFromUri(UMOEndpointURI uri,
String type)
|
static UMOEndpoint |
ImmutableMuleEndpoint.getEndpointFromUri(String uri)
|
static UMOEndpoint |
ImmutableMuleEndpoint.getEndpointFromUri(UMOEndpointURI uri)
|
static UMOEndpoint |
ImmutableMuleEndpoint.getOrCreateEndpointForUri(String uriIdentifier,
String type)
|
static UMOEndpoint |
ImmutableMuleEndpoint.getOrCreateEndpointForUri(UMOEndpointURI uri,
String type)
|
protected UMOEndpoint |
AbstractExceptionListener.getEndpoint(Throwable t)
Returns an endpoint for the given exception. |
| Methods in org.mule.impl with parameters of type UMOEndpoint | |
void |
MuleDescriptor.setInboundEndpoint(UMOEndpoint endpoint)
|
void |
MuleDescriptor.setOutboundEndpoint(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 |
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 |
void |
AbstractExceptionListener.addEndpoint(UMOEndpoint endpoint)
|
boolean |
AbstractExceptionListener.removeEndpoint(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.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 | |
protected UMOEndpoint |
DefaultReplyToHandler.getEndpoint(UMOEvent event,
String endpointUri)
|
UMOEndpoint |
AbstractMessageReceiver.getEndpoint()
|
| Methods in org.mule.providers with parameters of type UMOEndpoint | |
UMOMessageReceiver |
AbstractServiceEnabledConnector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
UMOMessageReceiver |
AbstractConnector.registerListener(UMOComponent component,
UMOEndpoint endpoint)
|
protected Object |
AbstractConnector.getReceiverKey(UMOComponent component,
UMOEndpoint endpoint)
The method determines the key used to store the receiver against. |
void |
AbstractConnector.unregisterListener(UMOComponent component,
UMOEndpoint endpoint)
|
abstract UMOMessageReceiver |
AbstractConnector.createReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
void |
AbstractConnector.destroyReceiver(UMOMessageReceiver receiver,
UMOEndpoint endpoint)
|
AbstractMessageReceiver |
AbstractConnector.getReceiver(UMOComponent component,
UMOEndpoint endpoint)
|
void |
AbstractMessageReceiver.setEndpoint(UMOEndpoint endpoint)
|
| Constructors in org.mule.providers with parameters of type UMOEndpoint | |
TransactedPollingMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
Long frequency)
|
|
AbstractMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
Creates the Message Receiver |
|
PollingMessageReceiver(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 |
ConnectorFactory.createEndpoint(UMOEndpointURI uri,
String type)
|
| Methods in org.mule.providers.service with parameters of type UMOEndpoint | |
UMOMessageReceiver |
ConnectorServiceDescriptor.createMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint)
|
UMOMessageReceiver |
ConnectorServiceDescriptor.createMessageReceiver(UMOConnector connector,
UMOComponent component,
UMOEndpoint endpoint,
Object[] args)
|
| 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 |
ComponentCatchAllStrategy.getEndpoint()
|
UMOEndpoint |
AbstractCatchAllStrategy.getEndpoint()
|
UMOEndpoint |
LoggingCatchAllStrategy.getEndpoint()
|
| Methods in org.mule.routing with parameters of type UMOEndpoint | |
void |
ComponentCatchAllStrategy.setEndpoint(UMOEndpoint endpoint)
|
void |
AbstractCatchAllStrategy.setEndpoint(UMOEndpoint endpoint)
|
void |
LoggingCatchAllStrategy.setEndpoint(UMOEndpoint endpoint)
|
| Uses of UMOEndpoint in org.mule.routing.inbound |
| Methods in org.mule.routing.inbound that return UMOEndpoint | |
UMOEndpoint |
InboundMessageRouter.getEndpoint(String name)
|
| Methods in org.mule.routing.inbound with parameters of type UMOEndpoint | |
void |
InboundMessageRouter.addEndpoint(UMOEndpoint endpoint)
|
boolean |
InboundMessageRouter.removeEndpoint(UMOEndpoint endpoint)
|
| Uses of UMOEndpoint in org.mule.routing.outbound |
| Methods in org.mule.routing.outbound that return UMOEndpoint | |
protected UMOEndpoint |
EndpointSelector.lookupEndpoint(String endpointName)
|
protected UMOEndpoint |
AbstractRecipientList.getRecipientEndpoint(UMOMessage message,
String recipient)
|
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 |
UMOEndpoint[] |
OutboundMessageRouter.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.routing.outbound with parameters of type UMOEndpoint | |
void |
OutboundPassThroughRouter.addEndpoint(UMOEndpoint endpoint)
|
protected abstract UMOMessage |
AbstractMessageSplitter.getMessagePart(UMOMessage message,
UMOEndpoint endpoint)
Retrieves a specific message part for the given endpoint. |
void |
ChainingRouter.addEndpoint(UMOEndpoint endpoint)
|
void |
AbstractOutboundRouter.dispatch(UMOSession session,
UMOMessage message,
UMOEndpoint endpoint)
|
UMOMessage |
AbstractOutboundRouter.send(UMOSession session,
UMOMessage message,
UMOEndpoint endpoint)
|
protected void |
AbstractOutboundRouter.setMessageProperties(UMOSession session,
UMOMessage message,
UMOEndpoint endpoint)
|
void |
AbstractOutboundRouter.addEndpoint(UMOEndpoint endpoint)
|
boolean |
AbstractOutboundRouter.removeEndpoint(UMOEndpoint endpoint)
|
void |
FilteringOutboundRouter.addEndpoint(UMOEndpoint endpoint)
|
protected UMOMessage |
FilteringListMessageSplitter.getMessagePart(UMOMessage message,
UMOEndpoint endpoint)
|
void |
ExceptionBasedRouter.addEndpoint(UMOEndpoint endpoint)
|
| Uses of UMOEndpoint in org.mule.routing.response |
| Methods in org.mule.routing.response that return UMOEndpoint | |
UMOEndpoint |
ResponseMessageRouter.getEndpoint(String name)
|
| Methods in org.mule.routing.response with parameters of type UMOEndpoint | |
void |
ResponseMessageRouter.addEndpoint(UMOEndpoint endpoint)
|
boolean |
ResponseMessageRouter.removeEndpoint(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 |
UMODescriptor.setInboundEndpoint(UMOEndpoint endpoint)
Deprecated. use setInboundRouter() instead (see MULE-506) |
void |
UMODescriptor.setOutboundEndpoint(UMOEndpoint endpoint)
Deprecated. use setOutboundRouter() instead (see MULE-506) |
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 |
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 |
| 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 |
UMOConnector.unregisterListener(UMOComponent component,
UMOEndpoint endpoint)
|
void |
UMOMessageReceiver.setEndpoint(UMOEndpoint endpoint)
|
| Uses of UMOEndpoint in org.mule.umo.routing |
| Methods in org.mule.umo.routing that return UMOEndpoint | |
UMOEndpoint |
UMORouterCatchAllStrategy.getEndpoint()
|
UMOEndpoint |
UMOResponseMessageRouter.getEndpoint(String name)
|
UMOEndpoint |
UMOInboundMessageRouter.getEndpoint(String name)
|
UMOEndpoint[] |
UMOOutboundMessageRouter.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 |
UMORouterCatchAllStrategy.setEndpoint(UMOEndpoint endpoint)
|
void |
UMOOutboundRouter.addEndpoint(UMOEndpoint endpoint)
Adds an endpoint to this router |
boolean |
UMOOutboundRouter.removeEndpoint(UMOEndpoint endpoint)
Removes a specific endpoint from the router |
void |
UMOResponseMessageRouter.addEndpoint(UMOEndpoint endpoint)
|
boolean |
UMOResponseMessageRouter.removeEndpoint(UMOEndpoint endpoint)
|
void |
UMOInboundMessageRouter.addEndpoint(UMOEndpoint endpoint)
|
boolean |
UMOInboundMessageRouter.removeEndpoint(UMOEndpoint endpoint)
|
| Uses of UMOEndpoint in org.mule.util |
| Methods in org.mule.util that return UMOEndpoint | |
static UMOEndpoint |
MuleObjectHelper.getEndpointByProtocol(String protocol)
|
static UMOEndpoint |
MuleObjectHelper.getEndpointByEndpointUri(String endpointUri,
boolean wildcardMatch)
|
|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||