Uses of Interface
org.mule.api.service.Service

Packages that use Service
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.interceptor   
org.mule.api.registry   
org.mule.api.routing Interfaces that define inbound and outbound routing API. 
org.mule.api.service   
org.mule.api.transport Contains the interfaces that comprise a provider implementation. 
org.mule.component   
org.mule.component.builder   
org.mule.component.simple A collection of simple mule components that can be useful to simplify configuration while testing. 
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.example.loanbroker.bank   
org.mule.model.direct   
org.mule.model.pipeline   
org.mule.model.seda   
org.mule.module.client Simple interface for Mule clients to send and receive events from local or remote Mule Servers. 
org.mule.module.client.remoting   
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.spring.events A Spring EventMulticaster that allows any Spring bean to send and receive mule events through the ApplicationContext and event listeners. 
org.mule.registry   
org.mule.service   
org.mule.tck   
org.mule.transport Contains Abstract classes providing common functionality for all Mule providers. 
org.mule.transport.bpm   
org.mule.transport.cxf   
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.jdbc Provides jdbc transport. 
org.mule.transport.jms Provides Jms transport connectivity with support for all Jms features. 
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.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.soap   
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 Service in org.mule
 

Methods in org.mule that return Service
 Service DefaultMuleEvent.getService()
          Gets the recipient service of this event
 Service DefaultMuleEventContext.getService()
           
 Service DefaultMuleSession.getService()
           
 

Constructors in org.mule with parameters of type Service
DefaultMuleEvent(MuleMessage message, ImmutableEndpoint endpoint, Service service, MuleEvent previousEvent)
          Properties cache that only reads properties once from the inbound message and merges them with any properties on the endpoint.
DefaultMuleSession(MuleMessage message, SessionHandler requestSessionHandler, Service service, MuleContext muleContext)
           
DefaultMuleSession(Service service, MuleContext muleContext)
           
FailedToQueueEventException(Message message, MuleMessage muleMessage, Service service)
           
FailedToQueueEventException(Message message, MuleMessage muleMessage, Service service, Throwable cause)
           
FailedToQueueEventException(MuleMessage muleMessage, Service service, Throwable cause)
           
 

Uses of Service in org.mule.api
 

Methods in org.mule.api that return Service
 Service MuleEvent.getService()
          Retrieves the service for the current event
 Service MuleEventContext.getService()
           
 Service MuleSession.getService()
          Returns the Service associated with the session in its current execution
 

Uses of Service in org.mule.api.component
 

Methods in org.mule.api.component that return Service
 Service Component.getService()
           
 

Methods in org.mule.api.component with parameters of type Service
 void Component.setService(Service service)
           
 

Uses of Service in org.mule.api.interceptor
 

Methods in org.mule.api.interceptor that return Service
 Service Invocation.getService()
           
 

Uses of Service in org.mule.api.registry
 

Methods in org.mule.api.registry that return Service
 Service MuleRegistry.lookupService(String name)
           
 

Methods in org.mule.api.registry with parameters of type Service
 void MuleRegistry.registerService(Service service)
           
 

Uses of Service in org.mule.api.routing
 

Methods in org.mule.api.routing that return Service
 Service ServiceRoutingException.getService()
           
 

Constructors in org.mule.api.routing with parameters of type Service
ServiceRoutingException(Message message, MuleMessage muleMessage, ImmutableEndpoint endpoint, Service service)
           
ServiceRoutingException(Message message, MuleMessage muleMessage, ImmutableEndpoint endpoint, Service service, Throwable cause)
           
ServiceRoutingException(MuleMessage message, ImmutableEndpoint endpoint, Service service)
           
ServiceRoutingException(MuleMessage message, ImmutableEndpoint endpoint, Service service, Throwable cause)
           
 

Uses of Service in org.mule.api.service
 

Methods in org.mule.api.service that return Service
 Service ServiceException.getService()
           
 

Methods in org.mule.api.service with parameters of type Service
 void ServiceAware.setService(Service service)
           
 

Constructors in org.mule.api.service with parameters of type Service
ServiceException(Message message, MuleMessage muleMessage, Service service)
           
ServiceException(Message message, MuleMessage muleMessage, Service service, Throwable cause)
           
ServiceException(MuleMessage message, Service service, Throwable cause)
           
 

Uses of Service in org.mule.api.transport
 

Methods in org.mule.api.transport that return Service
 Service MessageReceiver.getService()
           
 

Methods in org.mule.api.transport with parameters of type Service
 MessageReceiver Connector.registerListener(Service service, InboundEndpoint endpoint)
          This creates a MessageReceiver associated with this endpoint and registers it with the connector
 void Connector.unregisterListener(Service service, InboundEndpoint endpoint)
           
 

Uses of Service in org.mule.component
 

Fields in org.mule.component declared as Service
protected  Service AbstractComponent.service
           
 

Methods in org.mule.component that return Service
 Service AbstractComponent.getService()
           
 Service ComponentInterceptorInvoker.getService()
           
 

Methods in org.mule.component with parameters of type Service
 void AbstractComponent.setService(Service service)
           
 

Uses of Service in org.mule.component.builder
 

Fields in org.mule.component.builder declared as Service
protected  Service AbstractMessageBuilder.service
          Deprecated.  
 

Methods in org.mule.component.builder with parameters of type Service
 void AbstractMessageBuilder.setService(Service service)
          Deprecated.  
 

Uses of Service in org.mule.component.simple
 

Methods in org.mule.component.simple with parameters of type Service
 void BridgeComponent.setService(Service service)
          Deprecated.  
 

Uses of Service in org.mule.config.i18n
 

Methods in org.mule.config.i18n with parameters of type Service
static Message CoreMessages.noServiceQueueTimeoutSet(Service service)
           
static Message CoreMessages.routingFailedOnEndpoint(Service service, ImmutableEndpoint endpoint)
           
static Message CoreMessages.stopPausedSedaServiceNonPeristentQueueMessageLoss(int num, Service service)
           
 

Uses of Service in org.mule.context.notification
 

Constructors in org.mule.context.notification with parameters of type Service
ServiceNotification(Service message, int action)
           
 

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

Methods in org.mule.example.loanbroker.bank with parameters of type Service
 void Bank.setService(Service service)
           
 

Uses of Service in org.mule.model.direct
 

Classes in org.mule.model.direct that implement Service
 class DirectService
          A direct service invokes the service service directly without any threading, even when the invocation is asynchronous
 

Uses of Service in org.mule.model.pipeline
 

Classes in org.mule.model.pipeline that implement Service
 class PipelineService
           
 

Uses of Service in org.mule.model.seda
 

Classes in org.mule.model.seda that implement Service
 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 Service in org.mule.module.client
 

Methods in org.mule.module.client with parameters of type Service
protected  ImmutableEndpoint MuleClient.getDefaultClientEndpoint(Service service, Object payload)
           
 

Uses of Service in org.mule.module.client.remoting
 

Methods in org.mule.module.client.remoting that return Service
static Service RemoteDispatcherComponent.getSerivce(InboundEndpoint endpoint, WireFormat wireFormat, String encoding, int eventTimeout, MuleContext managementContext)
           
 

Uses of Service in org.mule.module.jca
 

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

Methods in org.mule.module.jca that return Service
protected  Service MuleResourceAdapter.createJcaService(javax.resource.spi.endpoint.MessageEndpointFactory endpointFactory, JcaModel model, InboundEndpoint endpoint)
           
 

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

Uses of Service in org.mule.module.spring.events
 

Fields in org.mule.module.spring.events declared as Service
protected  Service MuleEventMulticaster.service
          The mule instance compoennt for the Multicaster
 

Methods in org.mule.module.spring.events that return Service
protected  Service MuleEventMulticaster.getDefaultService()
           
 

Methods in org.mule.module.spring.events with parameters of type Service
protected  void MuleEventMulticaster.setSubscriptionsOnService(Service service)
           
 

Uses of Service in org.mule.registry
 

Methods in org.mule.registry that return Service
 Service MuleRegistryHelper.lookupService(String name)
           
 

Methods in org.mule.registry with parameters of type Service
 void MuleRegistryHelper.registerService(Service service)
           
 

Uses of Service in org.mule.service
 

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

Uses of Service in org.mule.tck
 

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

Uses of Service in org.mule.transport
 

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

Methods in org.mule.transport that return Service
 Service AbstractMessageReceiver.getService()
           
 

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

Constructors in org.mule.transport with parameters of type Service
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
 

Uses of Service in org.mule.transport.bpm
 

Constructors in org.mule.transport.bpm with parameters of type Service
ProcessMessageReceiver(Connector connector, Service service, InboundEndpoint endpoint)
           
 

Uses of Service in org.mule.transport.cxf
 

Methods in org.mule.transport.cxf with parameters of type Service
protected  Object CxfConnector.getReceiverKey(Service service, InboundEndpoint endpoint)
          The method determines the key used to store the receiver against.
 

Constructors in org.mule.transport.cxf with parameters of type Service
CxfMessageReceiver(Connector connector, Service service, InboundEndpoint Endpoint)
           
 

Uses of Service in org.mule.transport.ejb
 

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

Uses of Service in org.mule.transport.email
 

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

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

Uses of Service in org.mule.transport.file
 

Methods in org.mule.transport.file with parameters of type Service
 MessageReceiver FileConnector.createReceiver(Service service, 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(Service service, InboundEndpoint endpoint)
           
 

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

Uses of Service in org.mule.transport.ftp
 

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

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

Uses of Service in org.mule.transport.http
 

Methods in org.mule.transport.http with parameters of type Service
protected  Object HttpConnector.getReceiverKey(Service service, InboundEndpoint endpoint)
          The method determines the key used to store the receiver against.
 MessageReceiver HttpConnector.registerListener(Service service, InboundEndpoint endpoint)
           
 

Constructors in org.mule.transport.http with parameters of type Service
HttpMessageReceiver(Connector connector, Service service, InboundEndpoint endpoint)
           
HttpsMessageReceiver(Connector connector, Service service, InboundEndpoint endpoint)
           
PollingHttpMessageReceiver(Connector connector, Service service, InboundEndpoint endpoint)
           
 

Uses of Service in org.mule.transport.jdbc
 

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

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

Uses of Service in org.mule.transport.jms
 

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

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

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

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

Uses of Service in org.mule.transport.multicast
 

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

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

Uses of Service in org.mule.transport.quartz
 

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

Uses of Service in org.mule.transport.rmi
 

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

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

Uses of Service in org.mule.transport.service
 

Methods in org.mule.transport.service with parameters of type Service
 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)
           
 

Uses of Service in org.mule.transport.servlet
 

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

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

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

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

Uses of Service in org.mule.transport.soap
 

Methods in org.mule.transport.soap with parameters of type Service
 void WSProxyService.setService(Service service)
           
 

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

Methods in org.mule.transport.soap.axis that return Service
protected  Service AxisConnector.getOrCreateAxisComponent()
           
 

Methods in org.mule.transport.soap.axis with parameters of type Service
static Class[] AxisServiceProxy.getInterfacesForComponent(Service service)
           
protected  Object AxisConnector.getReceiverKey(Service component, InboundEndpoint endpoint)
          The method determines the key used to store the receiver against.
 

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

Uses of Service in org.mule.transport.ssl
 

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

Uses of Service in org.mule.transport.stdio
 

Methods in org.mule.transport.stdio with parameters of type Service
 MessageReceiver StdioConnector.createReceiver(Service service, InboundEndpoint endpoint)
           
 MessageReceiver PromptStdioConnector.registerListener(Service service, InboundEndpoint endpoint)
           
 

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

Uses of Service in org.mule.transport.tcp
 

Constructors in org.mule.transport.tcp with parameters of type Service
TcpMessageReceiver(Connector connector, Service service, InboundEndpoint endpoint)
           
 

Uses of Service in org.mule.transport.udp
 

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

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

Uses of Service in org.mule.transport.vm
 

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

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

Uses of Service in org.mule.transport.xmpp
 

Constructors in org.mule.transport.xmpp with parameters of type Service
XmppMessageReceiver(AbstractConnector connector, Service service, InboundEndpoint endpoint)
           
 



Copyright © 2003-2009 MuleSource, Inc.. All Rights Reserved.