Uses of Interface
org.mule.api.endpoint.ImmutableEndpoint

Packages that use ImmutableEndpoint
org.mule.api.component   
org.mule.api.endpoint Endpoint interfaces. 
org.mule.api.exception   
org.mule.api.registry   
org.mule.api.security Security API for authentication and authorisation. 
org.mule.api.transformer Contains the interfaces for transformers and exceptions for the Transformer API. 
org.mule.api.transport Contains the interfaces that comprise a provider implementation. 
org.mule.component   
org.mule.config.i18n Internationalisation support for Mule messages and exception messages. 
org.mule.context.notification Internal server notification types fired via the MuleManager. 
org.mule.endpoint Implemtation of Mule endpoint uris. 
org.mule.processor   
org.mule.processor.chain   
org.mule.registry   
org.mule.security Core security implementation including the mule security manager and encryption types 
org.mule.transformer Provides the default transformer base implementations for Mule including compression and encryption support. 
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. 
 

Uses of ImmutableEndpoint in org.mule.api.component
 

Methods in org.mule.api.component that return ImmutableEndpoint
 ImmutableEndpoint InterfaceBinding.getEndpoint()
           
 

Methods in org.mule.api.component with parameters of type ImmutableEndpoint
 void InterfaceBinding.setEndpoint(ImmutableEndpoint endpoint)
           
 

Uses of ImmutableEndpoint in org.mule.api.endpoint
 

Subinterfaces of ImmutableEndpoint in org.mule.api.endpoint
 interface InboundEndpoint
           
 interface OutboundEndpoint
           
 

Uses of ImmutableEndpoint in org.mule.api.exception
 

Fields in org.mule.api.exception declared as ImmutableEndpoint
protected  ImmutableEndpoint MessageRedeliveredException.endpoint
           
 

Methods in org.mule.api.exception that return ImmutableEndpoint
 ImmutableEndpoint MessageRedeliveredException.getEndpoint()
           
 

Uses of ImmutableEndpoint in org.mule.api.registry
 

Methods in org.mule.api.registry that return types with arguments of type ImmutableEndpoint
 Collection<ImmutableEndpoint> MuleRegistry.getEndpoints()
          Deprecated. Use EndpointFactory for creation/lookup of individual endpoints instead
 

Methods in org.mule.api.registry with parameters of type ImmutableEndpoint
 void MuleRegistry.registerEndpoint(ImmutableEndpoint endpoint)
           
 

Uses of ImmutableEndpoint in org.mule.api.security
 

Methods in org.mule.api.security that return ImmutableEndpoint
 ImmutableEndpoint EndpointSecurityFilter.getEndpoint()
          Deprecated.  
 

Methods in org.mule.api.security with parameters of type ImmutableEndpoint
 void EndpointSecurityFilter.setEndpoint(ImmutableEndpoint endpoint)
          Deprecated.  
 

Uses of ImmutableEndpoint in org.mule.api.transformer
 

Methods in org.mule.api.transformer that return ImmutableEndpoint
 ImmutableEndpoint Transformer.getEndpoint()
          Deprecated.  
 

Uses of ImmutableEndpoint in org.mule.api.transport
 

Constructors in org.mule.api.transport with parameters of type ImmutableEndpoint
ReceiveException(ImmutableEndpoint endpoint, long timeout, Throwable cause)
           
ReceiveException(Message message, ImmutableEndpoint endpoint, long timeout)
           
ReceiveException(Message message, ImmutableEndpoint endpoint, long timeout, Throwable cause)
           
 

Uses of ImmutableEndpoint in org.mule.component
 

Methods in org.mule.component that return ImmutableEndpoint
 ImmutableEndpoint DefaultInterfaceBinding.getEndpoint()
           
 

Methods in org.mule.component with parameters of type ImmutableEndpoint
 void DefaultInterfaceBinding.setEndpoint(ImmutableEndpoint e)
           
 

Uses of ImmutableEndpoint in org.mule.config.i18n
 

Methods in org.mule.config.i18n with parameters of type ImmutableEndpoint
static Message CoreMessages.exceptionListenerMustUseOutboundEndpoint(AbstractExceptionListener exceptionListener, ImmutableEndpoint endpoint)
           
static Message CoreMessages.failedToDispatchToReplyto(ImmutableEndpoint endpoint)
           
static Message CoreMessages.outboundRouterMustUseOutboudEndpoints(OutboundRouter router, ImmutableEndpoint endpoint)
           
static Message CoreMessages.routingFailedOnEndpoint(Service service, ImmutableEndpoint endpoint)
          Deprecated. 
static Message CoreMessages.transformOnObjectUnsupportedTypeOfEndpoint(String name, Class<?> class1, ImmutableEndpoint endpoint)
           
 

Uses of ImmutableEndpoint in org.mule.context.notification
 

Methods in org.mule.context.notification that return ImmutableEndpoint
 ImmutableEndpoint EndpointMessageNotification.getImmutableEndpoint()
           
 

Constructors in org.mule.context.notification with parameters of type ImmutableEndpoint
EndpointMessageNotification(MuleMessage resource, ImmutableEndpoint endpoint, FlowConstruct flowConstruct, int action)
           
 

Uses of ImmutableEndpoint in org.mule.endpoint
 

Classes in org.mule.endpoint that implement ImmutableEndpoint
 class AbstractEndpoint
          ImmutableMuleEndpoint describes a Provider in the Mule Server.
 class DefaultInboundEndpoint
           
 class DefaultOutboundEndpoint
           
 class DynamicOutboundEndpoint
          An Outbound endpoint who's URI is a template used to created new non dynamic endpoints based on the current message.
 class DynamicURIInboundEndpoint
          Allow's EndpointURI to be set and changed dynamically by wrapping up an immutable endpoint instance.
 class DynamicURIOutboundEndpoint
          Allows EndpointURI to be set and changed dynamically by wrapping up an immutable endpoint instance.
 

Fields in org.mule.endpoint declared as ImmutableEndpoint
protected  ImmutableEndpoint EndpointMessageProcessorChainBuilder.endpoint
           
 

Methods in org.mule.endpoint that return ImmutableEndpoint
protected  ImmutableEndpoint DefaultEndpointFactory.getEndpoint(EndpointURI uri, org.mule.endpoint.DefaultEndpointFactory.EndpointSource source)
           
protected  ImmutableEndpoint DefaultEndpointFactory.registerEndpoint(ImmutableEndpoint endpoint)
           
 

Methods in org.mule.endpoint with parameters of type ImmutableEndpoint
protected  ImmutableEndpoint DefaultEndpointFactory.registerEndpoint(ImmutableEndpoint endpoint)
           
 void EndpointAware.setEndpoint(ImmutableEndpoint ep)
           
 

Constructors in org.mule.endpoint with parameters of type ImmutableEndpoint
AbstractMetaEndpointBuilder(ImmutableEndpoint source)
           
EndpointMessageProcessorChainBuilder(ImmutableEndpoint endpoint, FlowConstruct flowConstruct)
           
EndpointURIEndpointBuilder(ImmutableEndpoint source)
           
 

Uses of ImmutableEndpoint in org.mule.processor
 

Methods in org.mule.processor with parameters of type ImmutableEndpoint
 void SecurityFilterMessageProcessor.setEndpoint(ImmutableEndpoint ep)
           
 

Uses of ImmutableEndpoint in org.mule.processor.chain
 

Methods in org.mule.processor.chain with parameters of type ImmutableEndpoint
 void AbstractMessageProcessorChain.setEndpoint(ImmutableEndpoint endpoint)
           
 

Uses of ImmutableEndpoint in org.mule.registry
 

Methods in org.mule.registry that return types with arguments of type ImmutableEndpoint
 Collection<ImmutableEndpoint> MuleRegistryHelper.getEndpoints()
          
 

Methods in org.mule.registry with parameters of type ImmutableEndpoint
 void MuleRegistryHelper.registerEndpoint(ImmutableEndpoint endpoint)
          
 

Uses of ImmutableEndpoint in org.mule.security
 

Fields in org.mule.security declared as ImmutableEndpoint
protected  ImmutableEndpoint AbstractEndpointSecurityFilter.endpoint
          Deprecated.  
 

Methods in org.mule.security that return ImmutableEndpoint
 ImmutableEndpoint AbstractEndpointSecurityFilter.getEndpoint()
          Deprecated.  
 

Methods in org.mule.security with parameters of type ImmutableEndpoint
 void AbstractEndpointSecurityFilter.setEndpoint(ImmutableEndpoint endpoint)
          Deprecated.  
 

Uses of ImmutableEndpoint in org.mule.transformer
 

Fields in org.mule.transformer declared as ImmutableEndpoint
protected  ImmutableEndpoint AbstractTransformer.endpoint
          The endpoint that this transformer instance is configured on
 

Methods in org.mule.transformer that return ImmutableEndpoint
 ImmutableEndpoint AbstractTransformer.getEndpoint()
           
 ImmutableEndpoint CompositeConverter.getEndpoint()
           
 

Methods in org.mule.transformer with parameters of type ImmutableEndpoint
static List<Transformer> TransformerUtils.getDefaultInboundTransformers(TransportServiceDescriptor serviceDescriptor, ImmutableEndpoint endpoint)
           
static List<Transformer> TransformerUtils.getDefaultOutboundTransformers(TransportServiceDescriptor serviceDescriptor, ImmutableEndpoint endpoint)
           
static List<Transformer> TransformerUtils.getDefaultResponseTransformers(TransportServiceDescriptor serviceDescriptor, ImmutableEndpoint endpoint)
           
 void AbstractTransformer.setEndpoint(ImmutableEndpoint endpoint)
           
 void TransformerChain.setEndpoint(ImmutableEndpoint endpoint)
           
 void CompositeConverter.setEndpoint(ImmutableEndpoint ep)
           
 

Uses of ImmutableEndpoint in org.mule.transport
 

Fields in org.mule.transport declared as ImmutableEndpoint
protected  ImmutableEndpoint AbstractTransportMessageHandler.endpoint
           
 

Methods in org.mule.transport that return ImmutableEndpoint
 ImmutableEndpoint AbstractTransportMessageHandler.getEndpoint()
           
 

Methods in org.mule.transport with parameters of type ImmutableEndpoint
protected
<T> T
AbstractConnector.createOperationResource(ImmutableEndpoint endpoint)
           
 void AbstractConnector.destroyReceiver(MessageReceiver receiver, ImmutableEndpoint endpoint)
           
protected  String AbstractTransportMessageHandler.getConnectEventId(ImmutableEndpoint endpoint)
           
 List<Transformer> AbstractConnector.getDefaultInboundTransformers(ImmutableEndpoint endpoint)
           
 List<Transformer> AbstractConnector.getDefaultOutboundTransformers(ImmutableEndpoint endpoint)
           
 List<Transformer> AbstractConnector.getDefaultResponseTransformers(ImmutableEndpoint endpoint)
           
 ReplyToHandler AbstractConnector.getReplyToHandler(ImmutableEndpoint endpoint)
          Getter for property 'replyToHandler'.
<T> T
AbstractConnector.getTransactionalResource(ImmutableEndpoint endpoint)
          Returns transactional resource to use based on endpoint configuration and transactional context.
 void AbstractTransportMessageHandler.setEndpoint(ImmutableEndpoint endpoint)
           
 

Constructors in org.mule.transport with parameters of type ImmutableEndpoint
AbstractTransportMessageHandler(ImmutableEndpoint endpoint)
           
 

Uses of ImmutableEndpoint in org.mule.transport.service
 

Methods in org.mule.transport.service with parameters of type ImmutableEndpoint
 List<Transformer> TransportServiceDescriptor.createInboundTransformers(ImmutableEndpoint endpoint)
           
 List<Transformer> DefaultTransportServiceDescriptor.createInboundTransformers(ImmutableEndpoint endpoint)
           
 List<Transformer> TransportServiceDescriptor.createOutboundTransformers(ImmutableEndpoint endpoint)
           
 List<Transformer> DefaultTransportServiceDescriptor.createOutboundTransformers(ImmutableEndpoint endpoint)
           
 List<Transformer> TransportServiceDescriptor.createResponseTransformers(ImmutableEndpoint endpoint)
           
 List<Transformer> DefaultTransportServiceDescriptor.createResponseTransformers(ImmutableEndpoint endpoint)
           
protected  Transformer DefaultTransportServiceDescriptor.createTransformer(String className, ImmutableEndpoint endpoint)
           
 Connector TransportFactory.getOrCreateConnectorByProtocol(ImmutableEndpoint endpoint)
           
 



Copyright © 2003-2013 MuleSoft, Inc.. All Rights Reserved.