Uses of Interface
org.mule.api.construct.FlowConstruct

Packages that use FlowConstruct
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.component   
org.mule.api.construct   
org.mule.api.endpoint Endpoint interfaces. 
org.mule.api.registry   
org.mule.api.service   
org.mule.api.transport Contains the interfaces that comprise a provider implementation. 
org.mule.client   
org.mule.component   
org.mule.config.spring.factories   
org.mule.construct   
org.mule.construct.processor   
org.mule.context.notification Internal server notification types fired via the MuleManager. 
org.mule.endpoint Implemtation of Mule endpoint uris. 
org.mule.example.loanbroker.bank   
org.mule.example.notifications   
org.mule.exception   
org.mule.interceptor   
org.mule.model.seda   
org.mule.module.bpm   
org.mule.module.cxf.builder   
org.mule.module.cxf.config   
org.mule.module.ibeans.config   
org.mule.module.ibeans.spi.support   
org.mule.module.jca A Resource Adapter implementation that allows a Mule instance to be deployed to a J2ee application server and exposes Mule services via the JCA connector architecture. 
org.mule.module.ws.construct   
org.mule.object   
org.mule.processor   
org.mule.processor.chain   
org.mule.registry   
org.mule.routing Defines the core routing patterns supported by mule. 
org.mule.routing.outbound Outbound router implementation as described in the Enterprise Integration Patterns book. 
org.mule.routing.requestreply   
org.mule.service   
org.mule.session   
org.mule.source   
org.mule.tck   
org.mule.tck.functional Helper classes and interfaces used by Mule fnctional tests. 
org.mule.tck.junit4   
org.mule.transport Contains Abstract classes providing common functionality for all Mule providers. 
org.mule.transport.ajax   
org.mule.transport.ajax.container A AJAX transport allows Mule applications to send a receive events to the web browser. 
org.mule.transport.ajax.embedded A AJAX transport allows Mule applications to send a receive events to the web browser. 
org.mule.transport.ejb   
org.mule.transport.email Provides pop3, smtp and imap connectivity for Mule
org.mule.transport.file Provides file transport in the form of a directory listeners and file dispatchers. 
org.mule.transport.ftp   
org.mule.transport.http Provides http transport including proxy support. 
org.mule.transport.http.construct   
org.mule.transport.jdbc Provides jdbc transport. 
org.mule.transport.jms Provides Jms transport connectivity with support for all Jms features. 
org.mule.transport.jms.redelivery   
org.mule.transport.jms.websphere Provides Jms connectivity with Websphere-specific workarounds and improvements. 
org.mule.transport.multicast IP multicast connectivity for Mule
org.mule.transport.polling   
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.servlet.jetty   
org.mule.transport.sftp   
org.mule.transport.soap.axis Provides an Axis soap transport for Mule
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.transport.xmpp   
 

Uses of FlowConstruct in org.mule
 

Methods in org.mule that return FlowConstruct
 FlowConstruct VoidMuleEvent.getFlowConstruct()
           
 FlowConstruct DefaultMuleEvent.getFlowConstruct()
          Gets the recipient service of this event
 FlowConstruct DefaultMuleEventContext.getFlowConstruct()
           
 

Constructors in org.mule with parameters of type FlowConstruct
DefaultMuleEvent(MuleEvent rewriteEvent, FlowConstruct flowConstruct)
           
DefaultMuleEvent(MuleMessage message, InboundEndpoint endpoint, FlowConstruct flowConstruct)
           
DefaultMuleEvent(MuleMessage message, InboundEndpoint endpoint, FlowConstruct flowConstruct, MuleSession session)
           
DefaultMuleEvent(MuleMessage message, InboundEndpoint endpoint, FlowConstruct flowConstruct, MuleSession session, ReplyToHandler replyToHandler, ResponseOutputStream outputStream)
           
DefaultMuleEvent(MuleMessage message, MessageExchangePattern exchangePattern, FlowConstruct flowConstruct)
           
DefaultMuleEvent(MuleMessage message, MessageExchangePattern exchangePattern, FlowConstruct flowConstruct, MuleSession session)
          Constructor used to create a message with no message source with minimal arguments
DefaultMuleEvent(MuleMessage message, MessageExchangePattern exchangePattern, FlowConstruct flowConstruct, MuleSession session, int timeout, Credentials credentials, ResponseOutputStream outputStream)
          Constructor used to create a message with no message source with all additional arguments
DefaultMuleEvent(MuleMessage message, MessageExchangePattern exchangePattern, FlowConstruct flowConstruct, MuleSession session, ResponseOutputStream outputStream)
          Constructor used to create a message with no message source with minimal arguments and ResponseOutputStream
DefaultMuleEvent(MuleMessage message, MuleEvent rewriteEvent, FlowConstruct flowConstruct, MuleSession session, boolean synchronous)
           
DefaultMuleEvent(MuleMessage message, URI messageSourceURI, MessageExchangePattern exchangePattern, FlowConstruct flowConstruct, MuleSession session)
          Constructor used to create a message with a uri that idendifies the message source with minimal arguments
DefaultMuleEvent(MuleMessage message, URI messageSourceURI, MessageExchangePattern exchangePattern, FlowConstruct flowConstruct, MuleSession session, int timeout, Credentials credentials, ResponseOutputStream outputStream)
          Constructor used to create a message with a identifiable message source with all additional arguments
DefaultMuleEvent(MuleMessage message, URI messageSourceURI, MessageExchangePattern exchangePattern, FlowConstruct flowConstruct, MuleSession session, ResponseOutputStream outputStream)
          Constructor used to create a message with a uri that idendifies the message source with minimal arguments and ResponseOutputStream
DefaultMuleEvent(MuleMessage message, URI messageSourceURI, String messageSourceName, MessageExchangePattern exchangePattern, FlowConstruct flowConstruct, MuleSession session, int timeout, Credentials credentials, ResponseOutputStream outputStream, String encoding, boolean transacted, boolean synchronous, Object replyToDestination, ReplyToHandler replyToHandler)
           
 

Uses of FlowConstruct in org.mule.api
 

Methods in org.mule.api that return FlowConstruct
 FlowConstruct MuleSession.getFlowConstruct()
          Deprecated. 
 FlowConstruct MuleEventContext.getFlowConstruct()
           
 FlowConstruct MuleEvent.getFlowConstruct()
          Retrieves the service for the current event
 

Methods in org.mule.api with parameters of type FlowConstruct
 void MuleSession.setFlowConstruct(FlowConstruct flowConstruct)
          Deprecated. 
 

Uses of FlowConstruct in org.mule.api.component
 

Methods in org.mule.api.component with parameters of type FlowConstruct
 LifecycleAdapter LifecycleAdapterFactory.create(Object pojoService, JavaComponent component, FlowConstruct flowConstruct, EntryPointResolverSet resolver, MuleContext muleContext)
           
 

Uses of FlowConstruct in org.mule.api.construct
 

Subinterfaces of FlowConstruct in org.mule.api.construct
 interface Pipeline
          A pipeline has an ordered list of MessageProcessor's that are invoked in order to processor new messages received from it's MessageSource
 

Methods in org.mule.api.construct with parameters of type FlowConstruct
 void FlowConstructAware.setFlowConstruct(FlowConstruct flowConstruct)
           
 

Constructors in org.mule.api.construct with parameters of type FlowConstruct
FlowConstructInvalidException(Message message, FlowConstruct flowConstruct)
           
 

Uses of FlowConstruct in org.mule.api.endpoint
 

Methods in org.mule.api.endpoint with parameters of type FlowConstruct
 MessageProcessor EndpointMessageProcessorChainFactory.createInboundMessageProcessorChain(InboundEndpoint endpoint, FlowConstruct flowConstruct, MessageProcessor target)
           
 MessageProcessor EndpointMessageProcessorChainFactory.createOutboundMessageProcessorChain(OutboundEndpoint endpoint, FlowConstruct flowConstruct, MessageProcessor target)
           
 

Uses of FlowConstruct in org.mule.api.registry
 

Methods in org.mule.api.registry that return FlowConstruct
 FlowConstruct MuleRegistry.lookupFlowConstruct(String name)
           
 

Methods in org.mule.api.registry that return types with arguments of type FlowConstruct
 Collection<FlowConstruct> MuleRegistry.lookupFlowConstructs()
           
 

Methods in org.mule.api.registry with parameters of type FlowConstruct
 void MuleRegistry.registerFlowConstruct(FlowConstruct flowConstruct)
           
 

Uses of FlowConstruct in org.mule.api.service
 

Subinterfaces of FlowConstruct in org.mule.api.service
 interface Service
          Service is the internal representation of a Mule Managed service.
 

Uses of FlowConstruct in org.mule.api.transport
 

Methods in org.mule.api.transport that return FlowConstruct
 FlowConstruct MessageReceiver.getFlowConstruct()
           
 

Methods in org.mule.api.transport with parameters of type FlowConstruct
 void Connector.registerListener(InboundEndpoint endpoint, MessageProcessor listener, FlowConstruct flowConstruct)
          Registers a MessageProcessor listener which will listen to new message received from a specific transport channel and then processed by the endpoint.
 void Connector.unregisterListener(InboundEndpoint endpoint, FlowConstruct flowConstruct)
          Unregisters the listener for the given endpoints.
 

Uses of FlowConstruct in org.mule.client
 

Classes in org.mule.client that implement FlowConstruct
static class DefaultLocalMuleClient.MuleClientFlowConstruct
          Placeholder class which makes the default exception handler available.
 

Uses of FlowConstruct in org.mule.component
 

Fields in org.mule.component declared as FlowConstruct
protected  FlowConstruct AbstractComponent.flowConstruct
           
protected  FlowConstruct DefaultComponentLifecycleAdapter.flowConstruct
           
 

Methods in org.mule.component that return FlowConstruct
 FlowConstruct AbstractComponent.getFlowConstruct()
           
 

Methods in org.mule.component with parameters of type FlowConstruct
 LifecycleAdapter DefaultComponentLifecycleAdapterFactory.create(Object pojoService, JavaComponent component, FlowConstruct flowConstruct, EntryPointResolverSet resolver, MuleContext muleContext)
           
 void AbstractJavaComponent.setFlowConstruct(FlowConstruct flowConstruct)
           
 void AbstractComponent.setFlowConstruct(FlowConstruct flowConstruct)
           
 

Constructors in org.mule.component with parameters of type FlowConstruct
DefaultComponentLifecycleAdapter(Object componentObject, JavaComponent component, FlowConstruct flowConstruct, EntryPointResolverSet entryPointResolver, MuleContext muleContext)
           
DefaultComponentLifecycleAdapter(Object componentObject, JavaComponent component, FlowConstruct flowConstruct, MuleContext muleContext)
           
NullLifecycleAdapter(Object componentObject, JavaComponent component, FlowConstruct flowConstruct, EntryPointResolverSet entryPointResolver, MuleContext muleContext)
           
 

Uses of FlowConstruct in org.mule.config.spring.factories
 

Methods in org.mule.config.spring.factories that return FlowConstruct
 FlowConstruct AbstractFlowConstructFactoryBean.getObject()
           
 

Uses of FlowConstruct in org.mule.construct
 

Classes in org.mule.construct that implement FlowConstruct
 class AbstractConfigurationPattern
          A template class for configuration patterns, which takes care of setting common message processors and optional transformers defined on the pattern.
 class AbstractFlowConstruct
          Abstract implementation of FlowConstruct that: Is constructed with unique name and MuleContext.
 class AbstractPipeline
          Abstract implementation of AbstractFlowConstruct that allows a list of AbstractPipeline.ProcessIfPipelineStartedMessageProcessors that will be used to process messages to be configured.
 class Bridge
          A simple bridge between a single inbound endpoint and a single outbound endpoint.
 class Flow
          This implementation of AbstractPipeline adds the following functionality: Rejects inbound events when Flow is not started Gathers statistics and processing time data Implements MessagePorcessor allowing direct invocation of the pipeline Supports the optional configuration of a ProcessingStrategy that determines how message processors are processed.
 class SimpleService
          In-out SOA-style simple service, with no outbound router.
 class Validator
           
 

Method parameters in org.mule.construct with type arguments of type FlowConstruct
 void FlowConstructLifecycleManager.fireDisposePhase(LifecycleCallback<FlowConstruct> callback)
           
 void FlowConstructLifecycleManager.fireInitialisePhase(LifecycleCallback<FlowConstruct> callback)
           
 void FlowConstructLifecycleManager.firePausePhase(LifecycleCallback<FlowConstruct> callback)
           
 void FlowConstructLifecycleManager.fireResumePhase(LifecycleCallback<FlowConstruct> callback)
           
 void FlowConstructLifecycleManager.fireStartPhase(LifecycleCallback<FlowConstruct> callback)
           
 void FlowConstructLifecycleManager.fireStopPhase(LifecycleCallback<FlowConstruct> callback)
           
 

Constructors in org.mule.construct with parameters of type FlowConstruct
FlowConstructLifecycleManager(FlowConstruct flowConstruct, MuleContext muleContext)
           
 

Uses of FlowConstruct in org.mule.construct.processor
 

Fields in org.mule.construct.processor declared as FlowConstruct
protected  FlowConstruct FlowConstructStatisticsMessageProcessor.flowConstruct
           
 

Methods in org.mule.construct.processor with parameters of type FlowConstruct
 void FlowConstructStatisticsMessageProcessor.setFlowConstruct(FlowConstruct flowConstruct)
           
 

Uses of FlowConstruct in org.mule.context.notification
 

Fields in org.mule.context.notification declared as FlowConstruct
protected  FlowConstruct ComponentMessageNotification.flowConstruct
           
 

Methods in org.mule.context.notification that return FlowConstruct
 FlowConstruct EndpointMessageNotification.getFlowConstruct()
           
 FlowConstruct ComponentMessageNotification.getFlowConstruct()
           
 

Constructors in org.mule.context.notification with parameters of type FlowConstruct
ComponentMessageNotification(MuleMessage message, Component component, FlowConstruct flowConstruct, int action)
           
EndpointMessageNotification(MuleMessage resource, ImmutableEndpoint endpoint, FlowConstruct flowConstruct, int action)
           
FlowConstructNotification(FlowConstruct flowConstruct, int action)
           
MessageProcessorNotification(FlowConstruct flowConstruct, MuleEvent event, MessageProcessor processor, MessagingException exceptionThrown, int action)
           
 

Uses of FlowConstruct in org.mule.endpoint
 

Methods in org.mule.endpoint that return FlowConstruct
 FlowConstruct DefaultInboundEndpoint.getFlowConstruct()
           
 

Methods in org.mule.endpoint with parameters of type FlowConstruct
 MessageProcessor DefaultEndpointMessageProcessorChainFactory.createInboundMessageProcessorChain(InboundEndpoint endpoint, FlowConstruct flowConstruct, MessageProcessor target)
           
protected  MessageProcessor DefaultOutboundEndpoint.createMessageProcessorChain(FlowConstruct flowContruct)
           
 MessageProcessor DefaultInboundEndpoint.createMessageProcessorChain(FlowConstruct flowContruct)
           
protected abstract  MessageProcessor AbstractEndpoint.createMessageProcessorChain(FlowConstruct flowContruct)
           
 MessageProcessor DefaultEndpointMessageProcessorChainFactory.createOutboundMessageProcessorChain(OutboundEndpoint endpoint, FlowConstruct flowConstruct, MessageProcessor target)
           
 MessageProcessor AbstractEndpoint.getMessageProcessorChain(FlowConstruct flowContruct)
           
 void DynamicURIInboundEndpoint.setFlowConstruct(FlowConstruct flowConstruct)
           
 void DefaultInboundEndpoint.setFlowConstruct(FlowConstruct flowConstruct)
           
 

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

Uses of FlowConstruct in org.mule.example.loanbroker.bank
 

Methods in org.mule.example.loanbroker.bank with parameters of type FlowConstruct
 void Bank.setFlowConstruct(FlowConstruct flowConstruct)
           
 

Uses of FlowConstruct in org.mule.example.notifications
 

Methods in org.mule.example.notifications that return FlowConstruct
 FlowConstruct ComponentMessageNotificationMixin.getFlowConstruct()
           
 

Uses of FlowConstruct in org.mule.exception
 

Methods in org.mule.exception with parameters of type FlowConstruct
protected  FlowConstructStatistics DefaultServiceExceptionStrategy.getFlowConstructStatistics(FlowConstruct flowConstruct)
          Deprecated.  
protected  ServiceStatistics DefaultServiceExceptionStrategy.getServiceStatistics(FlowConstruct flowConstruct)
          Deprecated.  
 void RedeliveryExceeded.setFlowConstruct(FlowConstruct flowConstruct)
           
protected  void AbstractMessagingExceptionStrategy.stopFlow(FlowConstruct flow)
           
 

Uses of FlowConstruct in org.mule.interceptor
 

Fields in org.mule.interceptor declared as FlowConstruct
protected  FlowConstruct AbstractEnvelopeInterceptor.flowConstruct
           
 

Methods in org.mule.interceptor with parameters of type FlowConstruct
 void AbstractEnvelopeInterceptor.setFlowConstruct(FlowConstruct flowConstruct)
           
 

Constructors in org.mule.interceptor with parameters of type FlowConstruct
ProcessingTimeInterceptor(MessageProcessor next, FlowConstruct fc)
           
 

Uses of FlowConstruct in org.mule.model.seda
 

Classes in org.mule.model.seda that implement FlowConstruct
 class SedaService
          A Seda service runs inside a Seda Model and is responsible for managing a Seda Queue and thread pool for a Mule sevice service.
 

Uses of FlowConstruct in org.mule.module.bpm
 

Constructors in org.mule.module.bpm with parameters of type FlowConstruct
Process(BPMS bpms, String name, String resource, FlowConstruct flowConstruct, MuleContext muleContext)
           
Process(BPMS bpms, String name, String resource, String processIdField, FlowConstruct flowConstruct, MuleContext muleContext)
           
Rules(RulesEngine rulesEngine, String resource, Object configuration, String entryPoint, Collection initialFacts, boolean stateless, boolean cepMode, FlowConstruct flowConstruct, MuleContext muleContext)
           
 

Uses of FlowConstruct in org.mule.module.cxf.builder
 

Methods in org.mule.module.cxf.builder with parameters of type FlowConstruct
 void WebServiceMessageProcessorBuilder.setFlowConstruct(FlowConstruct flowConstruct)
           
 

Uses of FlowConstruct in org.mule.module.cxf.config
 

Methods in org.mule.module.cxf.config with parameters of type FlowConstruct
 void FlowConfiguringMessageProcessor.setFlowConstruct(FlowConstruct flowConstruct)
           
 

Uses of FlowConstruct in org.mule.module.ibeans.config
 

Classes in org.mule.module.ibeans.config that implement FlowConstruct
 class IBeanFlowConstruct
          This is an empty flow construct that is used to host an iBean as a component with one or more component bindings.
 

Constructors in org.mule.module.ibeans.config with parameters of type FlowConstruct
CallInterfaceBinding(FlowConstruct flow)
           
 

Uses of FlowConstruct in org.mule.module.ibeans.spi.support
 

Methods in org.mule.module.ibeans.spi.support with parameters of type FlowConstruct
 MessageProcessor DynamicRequestEndpoint.NullInboundEndpoint.createMessageProcessorChain(FlowConstruct flowContruct)
           
 

Uses of FlowConstruct in org.mule.module.jca
 

Classes in org.mule.module.jca that implement FlowConstruct
 class JcaService
          JcaService Is the type of service used in Mule when embedded inside an app server using JCA.
 

Constructors in org.mule.module.jca with parameters of type FlowConstruct
JcaComponent(javax.resource.spi.endpoint.MessageEndpointFactory messageEndpointFactory, EntryPointResolverSet entryPointResolverSet, FlowConstruct flowConstruct, javax.resource.spi.work.WorkManager workManager)
           
 

Uses of FlowConstruct in org.mule.module.ws.construct
 

Classes in org.mule.module.ws.construct that implement FlowConstruct
 class WSProxy
          This class is implemented to act as a Proxy for a Web Service.
 

Uses of FlowConstruct in org.mule.object
 

Fields in org.mule.object declared as FlowConstruct
protected  FlowConstruct AbstractObjectFactory.flowConstruct
           
 

Methods in org.mule.object with parameters of type FlowConstruct
 void AbstractObjectFactory.setFlowConstruct(FlowConstruct flowConstruct)
           
 

Uses of FlowConstruct in org.mule.processor
 

Fields in org.mule.processor declared as FlowConstruct
protected  FlowConstruct AbstractMuleObjectOwner.flowConstruct
           
protected  FlowConstruct ResponseMessageProcessorAdapter.flowConstruct
           
protected  FlowConstruct AbstractRedeliveryPolicy.flowConstruct
           
 

Methods in org.mule.processor that return FlowConstruct
 FlowConstruct AbstractMuleObjectOwner.getFlowConstruct()
           
 

Methods in org.mule.processor with parameters of type FlowConstruct
 void AbstractMuleObjectOwner.setFlowConstruct(FlowConstruct flowConstruct)
           
 void ResponseMessageProcessorAdapter.setFlowConstruct(FlowConstruct flowConstruct)
           
 void AbstractRedeliveryPolicy.setFlowConstruct(FlowConstruct flowConstruct)
           
 

Uses of FlowConstruct in org.mule.processor.chain
 

Fields in org.mule.processor.chain declared as FlowConstruct
protected  FlowConstruct AbstractMessageProcessorChainBuilder.flowConstruct
           
 

Methods in org.mule.processor.chain with parameters of type FlowConstruct
 void AbstractMessageProcessorChain.setFlowConstruct(FlowConstruct flowConstruct)
           
 

Constructors in org.mule.processor.chain with parameters of type FlowConstruct
AbstractMessageProcessorChainBuilder(FlowConstruct flowConstruct)
           
DefaultMessageProcessorChainBuilder(FlowConstruct flowConstruct)
           
SimpleMessageProcessorChainBuilder(FlowConstruct flowConstruct)
           
 

Uses of FlowConstruct in org.mule.registry
 

Methods in org.mule.registry that return FlowConstruct
 FlowConstruct MuleRegistryHelper.lookupFlowConstruct(String name)
          
 

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

Methods in org.mule.registry with parameters of type FlowConstruct
 void MuleRegistryHelper.registerFlowConstruct(FlowConstruct flowConstruct)
          
 

Uses of FlowConstruct in org.mule.routing
 

Fields in org.mule.routing declared as FlowConstruct
protected  FlowConstruct AbstractAggregator.flowConstruct
           
protected  FlowConstruct IdempotentMessageFilter.flowConstruct
           
 

Methods in org.mule.routing with parameters of type FlowConstruct
 void AbstractSelectiveRouter.setFlowConstruct(FlowConstruct flowConstruct)
           
 void MessageFilter.setFlowConstruct(FlowConstruct flowConstruct)
           
 void AbstractAggregator.setFlowConstruct(FlowConstruct flowConstruct)
           
 void IdempotentMessageFilter.setFlowConstruct(FlowConstruct flowConstruct)
           
 void MessageProcessorFilterPair.setFlowConstruct(FlowConstruct flowConstruct)
           
 

Uses of FlowConstruct in org.mule.routing.outbound
 

Methods in org.mule.routing.outbound with parameters of type FlowConstruct
protected  void AbstractOutboundRouter.setMessageProperties(FlowConstruct service, MuleMessage message, MessageProcessor route)
           
 

Uses of FlowConstruct in org.mule.routing.requestreply
 

Fields in org.mule.routing.requestreply declared as FlowConstruct
protected  FlowConstruct AbstractAsyncRequestReplyRequester.flowConstruct
           
 

Methods in org.mule.routing.requestreply with parameters of type FlowConstruct
 void AbstractAsyncRequestReplyRequester.setFlowConstruct(FlowConstruct flowConstruct)
           
 

Uses of FlowConstruct in org.mule.service
 

Classes in org.mule.service that implement FlowConstruct
 class AbstractService
          A base implementation for all Services in Mule
 

Method parameters in org.mule.service with type arguments of type FlowConstruct
 void ServiceLifecycleManager.fireDisposePhase(LifecycleCallback<FlowConstruct> callback)
           
 void ServiceLifecycleManager.fireInitialisePhase(LifecycleCallback<FlowConstruct> callback)
           
 void ServiceLifecycleManager.firePausePhase(LifecycleCallback<FlowConstruct> callback)
           
 void ServiceLifecycleManager.fireResumePhase(LifecycleCallback<FlowConstruct> callback)
           
 void ServiceLifecycleManager.fireStartPhase(LifecycleCallback<FlowConstruct> callback)
           
 void ServiceLifecycleManager.fireStopPhase(LifecycleCallback<FlowConstruct> callback)
           
 

Constructors in org.mule.service with parameters of type FlowConstruct
ServiceLifecycleManager(FlowConstruct service, MuleContext muleContext)
           
 

Uses of FlowConstruct in org.mule.session
 

Methods in org.mule.session that return FlowConstruct
 FlowConstruct DefaultMuleSession.getFlowConstruct()
           
 

Methods in org.mule.session with parameters of type FlowConstruct
 void DefaultMuleSession.setFlowConstruct(FlowConstruct flowConstruct)
           
 

Constructors in org.mule.session with parameters of type FlowConstruct
DefaultMuleSession(FlowConstruct flowConstruct, MuleContext muleContext)
          Deprecated. 
DefaultMuleSession(MuleSession source, FlowConstruct flowConstruct)
          Deprecated. 
 

Uses of FlowConstruct in org.mule.source
 

Fields in org.mule.source declared as FlowConstruct
protected  FlowConstruct StartableCompositeMessageSource.flowConstruct
           
 

Methods in org.mule.source with parameters of type FlowConstruct
 void StartableCompositeMessageSource.setFlowConstruct(FlowConstruct pattern)
           
 void ClusterizableMessageSourceWrapper.setFlowConstruct(FlowConstruct flowConstruct)
           
 

Constructors in org.mule.source with parameters of type FlowConstruct
ClusterizableMessageSourceWrapper(MuleContext muleContext, ClusterizableMessageSource messageSource, FlowConstruct flowConstruct)
           
 

Uses of FlowConstruct in org.mule.tck
 

Methods in org.mule.tck that return FlowConstruct
protected  FlowConstruct FunctionalTestCase.getFlowConstruct(String name)
          Deprecated.  
 

Methods in org.mule.tck with parameters of type FlowConstruct
protected  Object FunctionalTestCase.getComponent(FlowConstruct flowConstruct)
          Deprecated. Returns an instance of the service's component object.
 

Uses of FlowConstruct in org.mule.tck.functional
 

Methods in org.mule.tck.functional with parameters of type FlowConstruct
 void AssertionMessageProcessor.setFlowConstruct(FlowConstruct flowConstruct)
           
 

Uses of FlowConstruct in org.mule.tck.junit4
 

Methods in org.mule.tck.junit4 that return FlowConstruct
protected  FlowConstruct FunctionalTestCase.getFlowConstruct(String flowName)
           
 

Methods in org.mule.tck.junit4 with parameters of type FlowConstruct
protected  Object FunctionalTestCase.getComponent(FlowConstruct flowConstruct)
          Returns an instance of the service's component object.
 

Uses of FlowConstruct in org.mule.transport
 

Fields in org.mule.transport declared as FlowConstruct
protected  FlowConstruct AbstractMessageReceiver.flowConstruct
          The Service with which this receiver is associated with
 

Methods in org.mule.transport that return FlowConstruct
 FlowConstruct AbstractMessageReceiver.getFlowConstruct()
           
 

Methods in org.mule.transport with parameters of type FlowConstruct
protected  MessageReceiver AbstractConnector.createReceiver(FlowConstruct flowConstruct, InboundEndpoint endpoint)
          Create a Message receiver for this connector
protected  void AbstractConnector.doUnregisterListener(FlowConstruct flowConstruct, InboundEndpoint endpoint, MessageReceiver receiver)
           
 MessageReceiver AbstractConnector.getReceiver(FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
protected  Object AbstractConnector.getReceiverKey(FlowConstruct flowConstruct, InboundEndpoint endpoint)
          The method determines the key used to store the receiver against.
 void AbstractConnector.registerListener(InboundEndpoint endpoint, MessageProcessor messageProcessorChain, FlowConstruct flowConstruct)
           
 void AbstractConnector.unregisterListener(InboundEndpoint endpoint, FlowConstruct flowConstruct)
           
 

Constructors in org.mule.transport with parameters of type FlowConstruct
AbstractMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
          Creates the Message Receiver
AbstractPollingMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
TransactedPollingMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
TransactedPollingMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint, long frequency)
          Deprecated. please use TransactedPollingMessageReceiver.TransactedPollingMessageReceiver(Connector, FlowConstruct, InboundEndpoint) instead
 

Uses of FlowConstruct in org.mule.transport.ajax
 

Constructors in org.mule.transport.ajax with parameters of type FlowConstruct
AjaxMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Uses of FlowConstruct in org.mule.transport.ajax.container
 

Methods in org.mule.transport.ajax.container with parameters of type FlowConstruct
protected  MessageReceiver AjaxServletConnector.createReceiver(FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Uses of FlowConstruct in org.mule.transport.ajax.embedded
 

Methods in org.mule.transport.ajax.embedded with parameters of type FlowConstruct
protected  MessageReceiver AjaxConnector.createReceiver(FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Uses of FlowConstruct in org.mule.transport.ejb
 

Constructors in org.mule.transport.ejb with parameters of type FlowConstruct
EjbMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint, long frequency)
           
 

Uses of FlowConstruct in org.mule.transport.email
 

Methods in org.mule.transport.email with parameters of type FlowConstruct
 MessageReceiver SmtpConnector.createReceiver(FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 MessageReceiver AbstractRetrieveMailConnector.createReceiver(FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.email with parameters of type FlowConstruct
RetrieveMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint, long checkFrequency, boolean backupEnabled, String backupFolder)
           
 

Uses of FlowConstruct in org.mule.transport.file
 

Methods in org.mule.transport.file with parameters of type FlowConstruct
 MessageReceiver FileConnector.createReceiver(FlowConstruct flowConstruct, InboundEndpoint endpoint)
          Registers a listener for a particular directory The following properties can be overriden in the endpoint declaration moveToDirectory filterPatterns filterClass pollingFrequency
protected  Object FileConnector.getReceiverKey(FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.file with parameters of type FlowConstruct
FileMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint, String readDir, String moveDir, String moveToPattern, long frequency)
           
 

Uses of FlowConstruct in org.mule.transport.ftp
 

Methods in org.mule.transport.ftp with parameters of type FlowConstruct
 MessageReceiver FtpConnector.createReceiver(FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.ftp with parameters of type FlowConstruct
FtpMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint, long frequency)
           
 

Uses of FlowConstruct in org.mule.transport.http
 

Methods in org.mule.transport.http with parameters of type FlowConstruct
protected  Object HttpConnector.getReceiverKey(FlowConstruct flowConstruct, InboundEndpoint endpoint)
          The method determines the key used to store the receiver against.
 void HttpConnector.registerListener(InboundEndpoint endpoint, MessageProcessor listener, FlowConstruct flowConstruct)
           
 

Constructors in org.mule.transport.http with parameters of type FlowConstruct
HttpMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
HttpsMessageReceiver(Connector connector, FlowConstruct flow, InboundEndpoint endpoint)
           
PollingHttpMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
PollingHttpsMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Uses of FlowConstruct in org.mule.transport.http.construct
 

Classes in org.mule.transport.http.construct that implement FlowConstruct
 class HttpProxy
          A simple HTTP proxy that supports transformation and caching.
 

Uses of FlowConstruct in org.mule.transport.jdbc
 

Methods in org.mule.transport.jdbc with parameters of type FlowConstruct
 MessageReceiver JdbcConnector.createReceiver(FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.jdbc with parameters of type FlowConstruct
JdbcMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint, String readStmt, String ackStmt)
           
 

Uses of FlowConstruct in org.mule.transport.jms
 

Methods in org.mule.transport.jms with parameters of type FlowConstruct
protected  Object JmsConnector.getReceiverKey(FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.jms with parameters of type FlowConstruct
JmsMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
          Deprecated.  
MultiConsumerJmsMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
SingleJmsMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
TransactedSingleResourceJmsMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
XaTransactedJmsMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Uses of FlowConstruct in org.mule.transport.jms.redelivery
 

Methods in org.mule.transport.jms.redelivery with parameters of type FlowConstruct
 void RedeliveryHandler.handleRedelivery(Message message, InboundEndpoint endpoint, FlowConstruct flow)
          Process the redelivered message.
abstract  void AbstractRedeliveryHandler.handleRedelivery(Message message, InboundEndpoint endpoint, FlowConstruct flow)
           
 void CountingRedeliveryHandler.handleRedelivery(Message message, InboundEndpoint endpoint, FlowConstruct flow)
          process the redelivered message.
 void JmsXRedeliveryHandler.handleRedelivery(Message message, InboundEndpoint endpoint, FlowConstruct flow)
          process the redelivered message.
 

Constructors in org.mule.transport.jms.redelivery with parameters of type FlowConstruct
MessageRedeliveredException(String messageId, int redeliveryCount, int maxRedelivery, InboundEndpoint endpoint, FlowConstruct flow, MuleMessage muleMessage)
           
 

Uses of FlowConstruct in org.mule.transport.jms.websphere
 

Constructors in org.mule.transport.jms.websphere with parameters of type FlowConstruct
WebsphereTransactedJmsMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Uses of FlowConstruct in org.mule.transport.multicast
 

Methods in org.mule.transport.multicast with parameters of type FlowConstruct
protected  Object MulticastConnector.getReceiverKey(FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.multicast with parameters of type FlowConstruct
MulticastMessageReceiver(AbstractConnector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Uses of FlowConstruct in org.mule.transport.polling
 

Methods in org.mule.transport.polling with parameters of type FlowConstruct
protected  Object MessageProcessorPollingConnector.getReceiverKey(FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.polling with parameters of type FlowConstruct
MessageProcessorPollingMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Uses of FlowConstruct in org.mule.transport.quartz
 

Constructors in org.mule.transport.quartz with parameters of type FlowConstruct
QuartzMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Uses of FlowConstruct in org.mule.transport.rmi
 

Methods in org.mule.transport.rmi with parameters of type FlowConstruct
 MessageReceiver RmiConnector.createReceiver(FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.rmi with parameters of type FlowConstruct
RmiCallbackMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
RmiMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint, long frequency)
           
 

Uses of FlowConstruct in org.mule.transport.service
 

Methods in org.mule.transport.service with parameters of type FlowConstruct
 MessageReceiver DefaultTransportServiceDescriptor.createMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 MessageReceiver TransportServiceDescriptor.createMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 MessageReceiver DefaultTransportServiceDescriptor.createMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint, Object... args)
           
 MessageReceiver TransportServiceDescriptor.createMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint, Object... args)
           
 

Uses of FlowConstruct in org.mule.transport.servlet
 

Methods in org.mule.transport.servlet with parameters of type FlowConstruct
protected  Object ServletConnector.getReceiverKey(FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.servlet with parameters of type FlowConstruct
ServletMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Uses of FlowConstruct in org.mule.transport.servlet.jetty
 

Methods in org.mule.transport.servlet.jetty with parameters of type FlowConstruct
protected  MessageReceiver JettyHttpConnector.createReceiver(FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.servlet.jetty with parameters of type FlowConstruct
JettyHttpMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Uses of FlowConstruct in org.mule.transport.sftp
 

Methods in org.mule.transport.sftp with parameters of type FlowConstruct
 MessageReceiver SftpConnector.createReceiver(FlowConstruct flow, InboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.sftp with parameters of type FlowConstruct
SftpMessageReceiver(SftpConnector connector, FlowConstruct flow, InboundEndpoint endpoint)
           
SftpMessageReceiver(SftpConnector connector, FlowConstruct flow, InboundEndpoint endpoint, long frequency)
           
 

Uses of FlowConstruct in org.mule.transport.soap.axis
 

Methods in org.mule.transport.soap.axis with parameters of type FlowConstruct
protected  Object AxisConnector.getReceiverKey(FlowConstruct flowConstruct, InboundEndpoint endpoint)
          The method determines the key used to store the receiver against.
 

Constructors in org.mule.transport.soap.axis with parameters of type FlowConstruct
AxisMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Uses of FlowConstruct in org.mule.transport.ssl
 

Constructors in org.mule.transport.ssl with parameters of type FlowConstruct
SslMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Uses of FlowConstruct in org.mule.transport.stdio
 

Methods in org.mule.transport.stdio with parameters of type FlowConstruct
 MessageReceiver StdioConnector.createReceiver(FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 void StdioConnector.registerListener(InboundEndpoint endpoint, MessageProcessor listener, FlowConstruct flowConstruct)
           
 

Constructors in org.mule.transport.stdio with parameters of type FlowConstruct
StdioMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint, long checkFrequency)
           
 

Uses of FlowConstruct in org.mule.transport.tcp
 

Constructors in org.mule.transport.tcp with parameters of type FlowConstruct
ExceptionReturnTcpMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
PollingTcpMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
TcpMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Uses of FlowConstruct in org.mule.transport.udp
 

Methods in org.mule.transport.udp with parameters of type FlowConstruct
protected  Object UdpConnector.getReceiverKey(FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.udp with parameters of type FlowConstruct
UdpMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Uses of FlowConstruct in org.mule.transport.vm
 

Methods in org.mule.transport.vm with parameters of type FlowConstruct
 MessageReceiver VMConnector.createReceiver(FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.vm with parameters of type FlowConstruct
VMMessageReceiver(Connector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 

Uses of FlowConstruct in org.mule.transport.xmpp
 

Constructors in org.mule.transport.xmpp with parameters of type FlowConstruct
XmppMessageReceiver(AbstractConnector connector, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
XmppPollingMessageReceiver(Connector conn, FlowConstruct flowConstruct, InboundEndpoint endpoint)
           
 



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