| com.sun.jbi.management.MBeanHelper
All known Subclasses: com.sun.jbi.management.support.MBeanHelper,
MBeanHelper | public interface MBeanHelper (Code) | | MBeanHelper is used to create standard mbeans for system services and components.
author: Sun Microsystems, Inc. |
Method Summary | |
boolean | createSystemServiceLoggerMBean(String aService, Logger aLogger) Create a LoggerMBean and associate it with aLogger .
Parameters: aService - is the name of the system service that owns the logger. Parameters: aLogger - is the Logger to associate with the LoggerMBean. | boolean | destroySystemServiceLoggerMBean(String aService) Destroy the LoggerMBean registered for aService .
Parameters: aService - is the name of the system service that owns the logger. | boolean | destroySystemServiceLoggerMBean(String aService, Logger aLogger) Destroy a LoggerMBean registered for aService .
Parameters: aService - is the name of the system service that owns the logger. Parameters: aLogger - is the Logger associated with the LoggerMBean. |
createSystemServiceLoggerMBean | boolean createSystemServiceLoggerMBean(String aService, Logger aLogger)(Code) | | Create a LoggerMBean and associate it with aLogger .
Parameters: aService - is the name of the system service that owns the logger. Parameters: aLogger - is the Logger to associate with the LoggerMBean. true if successful, otherwise false. |
destroySystemServiceLoggerMBean | boolean destroySystemServiceLoggerMBean(String aService)(Code) | | Destroy the LoggerMBean registered for aService .
Parameters: aService - is the name of the system service that owns the logger. true if successful, otherwise false. |
destroySystemServiceLoggerMBean | boolean destroySystemServiceLoggerMBean(String aService, Logger aLogger)(Code) | | Destroy a LoggerMBean registered for aService .
Parameters: aService - is the name of the system service that owns the logger. Parameters: aLogger - is the Logger associated with the LoggerMBean. true if successful, otherwise false. |
|
|