| com.sun.jbi.management.common.LoggerMBean
All known Subclasses: com.sun.jbi.management.support.SystemServiceLoggerMBeanImpl, com.sun.jbi.management.support.DefaultLoggerMBeanImpl,
LoggerMBean | public interface LoggerMBean (Code) | | LoggerMBean defines standard controls for setting the properties of a
single JBI Framework service or JBI Installable Component logger.
author: Sun Microsystems, Inc. |
Method Summary | |
String | getDisplayName() Get the localized display name of this logger. | String | getLogLevel() Get the log level of this logger. | String | getLoggerName() Get the name of this logger. | int | setAll() Set the log level of this logger to ALL. | int | setConfig() Set the log level of this logger to CONFIG. | int | setDefault() Set the log level of this logger to null to inherit from its parent. | int | setFine() Set the log level of this logger to FINE. | int | setFiner() Set the log level of this logger to FINER. | int | setFinest() Set the log level of this logger to FINEST. | int | setInfo() Set the log level of this logger to INFO. | int | setOff() Set the log level of this logger to OFF. | int | setSevere() Set the log level of this logger to SEVERE. | int | setWarning() Set the log level of this logger to WARNING. |
getDisplayName | String getDisplayName()(Code) | | Get the localized display name of this logger.
String representing the localized display name. |
getLogLevel | String getLogLevel()(Code) | | Get the log level of this logger.
String representing log level. |
getLoggerName | String getLoggerName()(Code) | | Get the name of this logger.
String representing the logger name. |
setAll | int setAll()(Code) | | Set the log level of this logger to ALL.
0 if operation is successful, otherwise non-zero. |
setConfig | int setConfig()(Code) | | Set the log level of this logger to CONFIG.
0 if operation is successful, otherwise non-zero. |
setDefault | int setDefault()(Code) | | Set the log level of this logger to null to inherit from its parent.
0 if operation is successful, otherwise non-zero. |
setFine | int setFine()(Code) | | Set the log level of this logger to FINE.
0 if operation is successful, otherwise non-zero. |
setFiner | int setFiner()(Code) | | Set the log level of this logger to FINER.
0 if operation is successful, otherwise non-zero. |
setFinest | int setFinest()(Code) | | Set the log level of this logger to FINEST.
0 if operation is successful, otherwise non-zero. |
setInfo | int setInfo()(Code) | | Set the log level of this logger to INFO.
0 if operation is successful, otherwise non-zero. |
setOff | int setOff()(Code) | | Set the log level of this logger to OFF.
0 if operation is successful, otherwise non-zero. |
setSevere | int setSevere()(Code) | | Set the log level of this logger to SEVERE.
0 if operation is successful, otherwise non-zero. |
setWarning | int setWarning()(Code) | | Set the log level of this logger to WARNING.
0 if operation is successful, otherwise non-zero. |
|
|