Uses of Interface
org.mule.api.context.notification.ServerNotificationListener

Packages that use ServerNotificationListener
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.context.notification   
org.mule.context.notification Internal server notification types fired via the MuleManager. 
org.mule.example.notifications   
org.mule.module.client.remoting.notification   
org.mule.module.management.agent Management agents including agents for Jdmk, MX4J, and Log4J 
org.mule.tck.functional Helper classes and interfaces used by Mule fnctional tests. 
org.mule.transport.ajax.embedded A AJAX transport allows Mule applications to send a receive events to the web browser. 
org.mule.transport.cxf   
org.mule.transport.cxf.wsdl   
org.mule.transport.jms Provides Jms transport connectivity with support for all Jms features. 
org.mule.transport.jms.activemq Provides Jms connectivity with ActiveMQ-specific workarounds and improvements. 
org.mule.transport.jms.mulemq   
org.mule.transport.jms.weblogic Provides Jms connectivity with Weblogic-specific workarounds and improvements. 
org.mule.transport.jms.websphere Provides Jms connectivity with Websphere-specific workarounds and improvements. 
org.mule.transport.servlet.events   
org.mule.transport.soap.axis Provides an Axis soap transport for Mule
org.mule.transport.soap.axis.wsdl   
 

Uses of ServerNotificationListener in org.mule
 

Methods in org.mule with parameters of type ServerNotificationListener
 void DefaultMuleContext.registerListener(ServerNotificationListener l)
           
 void DefaultMuleContext.registerListener(ServerNotificationListener l, String resourceIdentifier)
           
 void DefaultMuleContext.unregisterListener(ServerNotificationListener l)
           
 

Uses of ServerNotificationListener in org.mule.api
 

Methods in org.mule.api with parameters of type ServerNotificationListener
 void MuleContext.registerListener(ServerNotificationListener l)
          Registers an intenal server event listener.
 void MuleContext.registerListener(ServerNotificationListener l, String resourceIdentifier)
          Registers an intenal server event listener.
 void MuleContext.unregisterListener(ServerNotificationListener l)
          Unregisters a previously registered listener.
 

Uses of ServerNotificationListener in org.mule.api.context.notification
 

Subinterfaces of ServerNotificationListener in org.mule.api.context.notification
 interface ComponentMessageNotificationListener<T extends ComponentMessageNotification>
          ComponentMessageNotificationListener is an observer interface that objects can use to receive notifications about messages being processed by components
 interface ConnectionNotificationListener<T extends ConnectionNotification>
          ConnectionNotificationListener is an observer interface that objects can implement and then register themselves with the Mule manager to be notified when a Connection event occurs.
 interface CustomNotificationListener<T extends ServerNotification>
          CustomNotificationListener is an observer interface that can be used to listen for Custom notifications using MuleContext.fireCustomEvent(..).
 interface EndpointMessageNotificationListener<T extends EndpointMessageNotification>
          EndpointMessageNotificationListener is an observer interface that objects can use to receive notifications about messages being sent and received from endpoints
 interface ExceptionNotificationListener<T extends ExceptionNotification>
          ExceptionNotificationListener is an observer interface that objects can implement and then register themselves with the Mule manager to be notified when a Exception event occurs.
 interface ManagementNotificationListener<T extends ManagementNotification>
          ManagementNotificationListener is an observer interface that objects can use to receive notifications about the state of the Mule instance and its resources
 interface ModelNotificationListener<T extends ModelNotification>
          ModelNotificationListener is an observer interface that objects can implement and then register themselves with the Mule manager to be notified when a Model event occurs.
 interface MuleContextNotificationListener<T extends MuleContextNotification>
          MuleContextNotificationListener is an observer interface that objects can implement and then register themselves with the Mule manager to be notified when a Manager event occurs.
 interface RegistryNotificationListener<T extends RegistryNotification>
          RegistryNotificationListener is an observer interface that objects can implement and then register themselves with the MuleContext to be notified when a Registry event occurs.
 interface RoutingNotificationListener<T extends RoutingNotification>
          RoutingNotificationListener is an observer interface that objects can use to receive notifications about routing events such as async-reply misses.
 interface SecurityNotificationListener<T extends SecurityNotification>
          MuleContextNotificationListener is an observer interface that objects can implement to receive notifications about secure access requests.
 interface ServiceNotificationListener<T extends ServiceNotification>
          ServiceNotificationListener is an observer interface that objects can implement and then register themselves with the Mule manager to be notified when a Service event occurs.
 interface TransactionNotificationListener<T extends TransactionNotification>
          TransactionNotificationListener is an observer interface that objects can implement and then register themselves with the Mule manager to be notified when a Transaction event occurs.
 

Uses of ServerNotificationListener in org.mule.context.notification
 

Methods in org.mule.context.notification that return ServerNotificationListener
 ServerNotificationListener ListenerSubscriptionPair.getListener()
           
 

Methods in org.mule.context.notification that return types with arguments of type ServerNotificationListener
 Map<Class<? extends ServerNotificationListener>,Set<Class<? extends ServerNotification>>> ServerNotificationManager.getInterfaceToTypes()
           
 

Methods in org.mule.context.notification with parameters of type ServerNotificationListener
 void ServerNotificationManager.addListener(ServerNotificationListener listener)
           
 void ServerNotificationManager.addListenerSubscription(ServerNotificationListener listener, String subscription)
           
 void ServerNotificationManager.removeListener(ServerNotificationListener listener)
          This removes *all* registrations that reference this listener
 void ListenerSubscriptionPair.setListener(ServerNotificationListener listener)
           
 

Method parameters in org.mule.context.notification with type arguments of type ServerNotificationListener
 void ServerNotificationManager.addInterfaceToType(Class<? extends ServerNotificationListener> iface, Class<? extends ServerNotification> event)
           
 void ServerNotificationManager.disableInterface(Class<? extends ServerNotificationListener> iface)
           
 void ServerNotificationManager.removeAllListeners(Collection<ServerNotificationListener> listeners)
           
 void ServerNotificationManager.setDisabledInterfaces(Collection<Class<? extends ServerNotificationListener>> interfaces)
           
 void ServerNotificationManager.setDisabledTypes(Collection<Class<? extends ServerNotificationListener>> types)
           
 void ServerNotificationManager.setInterfaceToTypes(Map<Class<? extends ServerNotificationListener>,Set<Class<? extends ServerNotification>>> interfaceToEvents)
           
 

Constructors in org.mule.context.notification with parameters of type ServerNotificationListener
ListenerSubscriptionPair(ServerNotificationListener listener)
           
ListenerSubscriptionPair(ServerNotificationListener listener, String subscription)
           
 

Uses of ServerNotificationListener in org.mule.example.notifications
 

Subinterfaces of ServerNotificationListener in org.mule.example.notifications
 interface HeartbeatNotificationListener<T extends HeartbeatNotification>
          Listen for HeartbeatNotification events.
 

Uses of ServerNotificationListener in org.mule.module.client.remoting.notification
 

Subinterfaces of ServerNotificationListener in org.mule.module.client.remoting.notification
 interface RemoteDispatcherNotificationListener<T extends RemoteDispatcherNotification>
          ManagementNotificationListener is an observer interface that objects can use to receive notifications about the state of the Mule instance and its resources
 

Uses of ServerNotificationListener in org.mule.module.management.agent
 

Classes in org.mule.module.management.agent that implement ServerNotificationListener
protected  class JmxAgent.MuleContextStartedListener
           
protected  class JmxAgent.MuleContextStoppedListener
           
 

Uses of ServerNotificationListener in org.mule.tck.functional
 

Subinterfaces of ServerNotificationListener in org.mule.tck.functional
 interface FunctionalTestNotificationListener
          By implementing this listener interface and registering the object with the MuleContext.registerListener(ServerNotificationListener) You can receive FunctionalTestNotifications from the FunctionalTestComponent.
 

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

Classes in org.mule.transport.ajax.embedded that implement ServerNotificationListener
 class AjaxConnector
          Creates an 'embedded' Ajax server using Jetty and allows Mule to receiver and send events to browsers.
 

Uses of ServerNotificationListener in org.mule.transport.cxf
 

Classes in org.mule.transport.cxf that implement ServerNotificationListener
 class CxfConnector
          Connects Mule to a CXF bus instance.
 

Uses of ServerNotificationListener in org.mule.transport.cxf.wsdl
 

Classes in org.mule.transport.cxf.wsdl that implement ServerNotificationListener
 class CxfWsdlConnector
          TODO document
 

Uses of ServerNotificationListener in org.mule.transport.jms
 

Classes in org.mule.transport.jms that implement ServerNotificationListener
 class JmsConnector
          JmsConnector is a JMS 1.0.2b compliant connector that can be used by a Mule endpoint.
 

Uses of ServerNotificationListener in org.mule.transport.jms.activemq
 

Classes in org.mule.transport.jms.activemq that implement ServerNotificationListener
 class ActiveMQJmsConnector
          ActiveMQ 4.x-specific JMS connector.
 class ActiveMQXAJmsConnector
           
 

Uses of ServerNotificationListener in org.mule.transport.jms.mulemq
 

Classes in org.mule.transport.jms.mulemq that implement ServerNotificationListener
 class MuleMQJmsConnector
           
 class MuleMQXAJmsConnector
           
 

Uses of ServerNotificationListener in org.mule.transport.jms.weblogic
 

Classes in org.mule.transport.jms.weblogic that implement ServerNotificationListener
 class WeblogicJmsConnector
          Weblogic-specific JMS connector.
 

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

Classes in org.mule.transport.jms.websphere that implement ServerNotificationListener
 class WebsphereJmsConnector
          Websphere-specific JMS connector.
 

Uses of ServerNotificationListener in org.mule.transport.servlet.events
 

Subinterfaces of ServerNotificationListener in org.mule.transport.servlet.events
 interface ServletContextNotificationListener<T extends ServletContextNotification>
           
 

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

Classes in org.mule.transport.soap.axis that implement ServerNotificationListener
 class AxisConnector
          AxisConnector is used to maintain one or more Services for Axis server instance.
 

Uses of ServerNotificationListener in org.mule.transport.soap.axis.wsdl
 

Classes in org.mule.transport.soap.axis.wsdl that implement ServerNotificationListener
 class AxisWsdlConnector
          TODO document
 



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