Uses of Interface
org.mule.umo.manager.UMOServerNotificationListener

Packages that use UMOServerNotificationListener
org.mule Defines the main public API of the MuleManager and support classes such as the MuleServer. 
org.mule.impl.internal.notifications Internal server notification types fired via the MuleManager. 
org.mule.providers.jms Provides Jms transport connectivity with support for all Jms features. 
org.mule.providers.jms.activemq Provides Jms connectivity with ActiveMQ-specific workarounds and improvements. 
org.mule.providers.jms.weblogic Provides Jms connectivity with Weblogic-specific workarounds and improvements. 
org.mule.providers.jms.websphere Provides Jms connectivity with Websphere-specific workarounds and improvements. 
org.mule.providers.oracle.jms   
org.mule.providers.soap.axis Provides an Axis soap transport for Mule
org.mule.providers.soap.axis.wsdl   
org.mule.providers.soap.xfire   
org.mule.providers.soap.xfire.wsdl   
org.mule.tck.functional Helper classes and interfaces used by Mule fnctional tests. 
org.mule.umo.manager Manager APIs, including the UMOManager, agent and server event interfaces 
 

Uses of UMOServerNotificationListener in org.mule
 

Methods in org.mule with parameters of type UMOServerNotificationListener
 void MuleManager.registerListener(UMOServerNotificationListener l)
          Registers an intenal server event listener. The listener will be notified when a particular event happens within the server. Typically this is not an event in the same sense as an UMOEvent (although there is nothing stopping the implementation of this class triggering listeners when a UMOEvent is received). The types of notifications fired is entirely defined by the implementation of this class
 void MuleManager.registerListener(UMOServerNotificationListener l, String resourceIdentifier)
           
 void MuleManager.unregisterListener(UMOServerNotificationListener l)
          Unregisters a previously registered listener. If the listener has not already been registered, this method should return without exception
 

Uses of UMOServerNotificationListener in org.mule.impl.internal.notifications
 

Subinterfaces of UMOServerNotificationListener in org.mule.impl.internal.notifications
 interface AdminNotificationListener
          ManagementNotificationListener is an observer interface that objects can use to receive notifications about the state of the Mule instance and its resources
 interface ComponentNotificationListener
          ComponentNotificationListener is an observer interface that objects can implement and then register themselves with the Mule manager to be notified when a Component event occurs.
 interface ConnectionNotificationListener
          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
          CustomNotificationListener is an observer interface that can be used to listen for Custom notifications using UMOManager.fireCustomEvent(..).
 interface ExceptionNotificationListener
          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
          ManagementNotificationListener is an observer interface that objects can use to receive notifications about the state of the Mule instance and its resources
 interface ManagerNotificationListener
          ManagerNotificationListener 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 MessageNotificationListener
          MessageNotificationListener is an observer interface that objects can use to receive notifications about messages being sent and received from a Mule Server
 interface ModelNotificationListener
          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 SecurityNotificationListener
          ManagerNotificationListener is an observer interface that objects can implement to receive notifications about secure access requests.
 interface TransactionNotificationListener
          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.
 

Methods in org.mule.impl.internal.notifications that return UMOServerNotificationListener
 UMOServerNotificationListener ServerNotificationManager.Listener.getListenerObject()
           
 

Methods in org.mule.impl.internal.notifications with parameters of type UMOServerNotificationListener
 void ServerNotificationManager.registerListener(UMOServerNotificationListener listener)
           
 void ServerNotificationManager.registerListener(UMOServerNotificationListener listener, String subscription)
           
 void ServerNotificationManager.unregisterListener(UMOServerNotificationListener listener)
           
 

Constructors in org.mule.impl.internal.notifications with parameters of type UMOServerNotificationListener
ServerNotificationManager.Listener(UMOServerNotificationListener listener, String subscription)
           
 

Uses of UMOServerNotificationListener in org.mule.providers.jms
 

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

Uses of UMOServerNotificationListener in org.mule.providers.jms.activemq
 

Classes in org.mule.providers.jms.activemq that implement UMOServerNotificationListener
 class ActiveMqJmsConnector
          ActiveMQ 4.x-specific JMS connector.
 

Uses of UMOServerNotificationListener in org.mule.providers.jms.weblogic
 

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

Uses of UMOServerNotificationListener in org.mule.providers.jms.websphere
 

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

Uses of UMOServerNotificationListener in org.mule.providers.oracle.jms
 

Classes in org.mule.providers.oracle.jms that implement UMOServerNotificationListener
 class AbstractOracleJmsConnector
           
 class OracleInContainerJmsConnector
          JMS Connector for Oracle AQ that uses a user provided data source for database connectivity
 class OracleJmsConnector
          Extends the standard Mule JMS Provider with functionality specific to Oracle's JMS implementation based on Advanced Queueing (Oracle AQ).
 

Uses of UMOServerNotificationListener in org.mule.providers.soap.axis
 

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

Uses of UMOServerNotificationListener in org.mule.providers.soap.axis.wsdl
 

Classes in org.mule.providers.soap.axis.wsdl that implement UMOServerNotificationListener
 class AxisWsdlConnector
          todo document
 

Uses of UMOServerNotificationListener in org.mule.providers.soap.xfire
 

Classes in org.mule.providers.soap.xfire that implement UMOServerNotificationListener
 class XFireConnector
          Configures Xfire to provide STaX-based Web Servies support to Mule.
 

Uses of UMOServerNotificationListener in org.mule.providers.soap.xfire.wsdl
 

Classes in org.mule.providers.soap.xfire.wsdl that implement UMOServerNotificationListener
 class XFireWsdlConnector
          TODO document
 

Uses of UMOServerNotificationListener in org.mule.tck.functional
 

Subinterfaces of UMOServerNotificationListener in org.mule.tck.functional
 interface FunctionalTestNotificationListener
          TODO document
 

Uses of UMOServerNotificationListener in org.mule.umo.manager
 

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



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