Package | Description |
---|---|
javax.slee.facilities |
This package defines the interfaces and classes for the SLEE facilities available to SBBs and resource adaptors.
|
javax.slee.management |
This package defines the SLEE external management interfaces.
|
Modifier and Type | Field and Description |
---|---|
static Level |
Level.CONFIG
Deprecated.
Trace and alarm levels now defined in
TraceLevel and AlarmLevel . |
static Level |
Level.FINE
Deprecated.
Trace and alarm levels now defined in
TraceLevel and AlarmLevel . |
static Level |
Level.FINER
Deprecated.
Trace and alarm levels now defined in
TraceLevel and AlarmLevel . |
static Level |
Level.FINEST
Deprecated.
Trace and alarm levels now defined in
TraceLevel and AlarmLevel . |
static Level |
Level.INFO
Deprecated.
Trace and alarm levels now defined in
TraceLevel and AlarmLevel . |
static Level |
Level.OFF
Deprecated.
Trace and alarm levels now defined in
TraceLevel and AlarmLevel . |
static Level |
Level.SEVERE
Deprecated.
Trace and alarm levels now defined in
TraceLevel and AlarmLevel . |
static Level |
Level.WARNING
Deprecated.
Trace and alarm levels now defined in
TraceLevel and AlarmLevel . |
Modifier and Type | Method and Description |
---|---|
static Level |
Level.fromInt(int level)
Deprecated.
Trace and alarm levels now defined in
TraceLevel and AlarmLevel . |
Level |
TraceFacility.getTraceLevel(ComponentID messageSource)
Deprecated.
This method uses a
ComponentID to identify a notification
source and thus was not flexible enough to be used by other objects in the
SLEE. It has been replaced with Tracer.getTraceLevel() . |
Modifier and Type | Method and Description |
---|---|
void |
AlarmFacility.createAlarm(ComponentID alarmSource,
Level alarmLevel,
String alarmType,
String message,
long timestamp)
Deprecated.
This method uses a
ComponentID to identify a notification
source and thus is not compatible with the changes made to the alarm subsystem
in SLEE 1.1. In addition the levels provided by the Level class were
not practical for stateful alarm use. This method has been replaced with
AlarmFacility.raiseAlarm(String,String,AlarmLevel,String) . |
void |
AlarmFacility.createAlarm(ComponentID alarmSource,
Level alarmLevel,
String alarmType,
String message,
Throwable cause,
long timestamp)
Deprecated.
This method uses a
ComponentID to identify a notification
source and thus is not compatible with the changes made to the alarm subsystem
in SLEE 1.1. In addition the levels provided by the Level class were
not practical for stateful alarm use. This method has been replaced with
AlarmFacility.raiseAlarm(String,String,AlarmLevel,String,Throwable) . |
void |
TraceFacility.createTrace(ComponentID messageSource,
Level traceLevel,
String messageType,
String message,
long timestamp)
Deprecated.
This method uses a
ComponentID to identify a notification
source and thus was not flexible enough to be used by other objects in the
SLEE. It has been replaced with Tracer.trace(TraceLevel, String) . |
void |
TraceFacility.createTrace(ComponentID messageSource,
Level traceLevel,
String messageType,
String message,
Throwable cause,
long timestamp)
Deprecated.
This method uses a
ComponentID to identify a notification
source and thus was not flexible enough to be used by other objects in the
SLEE. It has been replaced with Tracer.trace(TraceLevel, String, Throwable) . |
boolean |
Level.isHigherLevel(Level other)
Deprecated.
Trace and alarm levels now defined in
TraceLevel and AlarmLevel . |
Modifier and Type | Method and Description |
---|---|
Level |
AlarmNotification.getLevel()
Deprecated.
Trace and alarm levels have been split into different classes.
Replaced with
AlarmNotification.getAlarmLevel() . |
Level |
TraceNotification.getLevel()
Deprecated.
Replaced with
TraceNotification.getTraceLevel() as trace and alarm levels have
been split into different classes. |
Level |
TraceMBean.getTraceLevel(ComponentID id)
Deprecated.
This method uses a
ComponentID to identify a notification
source and thus is not compatible with the changes made to the tracing
subsystem in SLEE 1.1. It has been replaced with TraceMBean.getTraceLevel(NotificationSource, String) . |
Modifier and Type | Method and Description |
---|---|
void |
TraceMBean.setTraceLevel(ComponentID id,
Level traceLevel)
Deprecated.
This method uses a
ComponentID to identify a notification
source and thus is not compatible with the changes made to the tracing
subsystem in SLEE 1.1. It has been replaced with TraceMBean.setTraceLevel(NotificationSource, String, TraceLevel) . |
Constructor and Description |
---|
AlarmLevelFilter(Level minLevel)
Deprecated.
Replaced with
AlarmLevelFilter.AlarmLevelFilter(AlarmLevel) as trace and alarm
levels have been split into different classes. |
AlarmNotification(AlarmMBean alarmMBean,
String alarmType,
Object alarmSource,
Level alarmLevel,
String message,
Throwable cause,
long sequenceNumber,
long timestamp)
Deprecated.
Alarm notifications have been expanded with new attributes to take advantage
of the new features provided by the SLEE specification. The
AlarmNotification.AlarmNotification(String,AlarmMBean,String,NotificationSource,String,String,AlarmLevel,String,Throwable,long,long)
constructor should be used instead of this constructor. |
TraceLevelFilter(Level minLevel)
Deprecated.
Replaced with
TraceLevelFilter.TraceLevelFilter(TraceLevel) as trace and alarm
levels have been split into different classes. |
TraceNotification(TraceMBean traceMBean,
String messageType,
Object messageSource,
Level traceLevel,
String message,
Throwable cause,
long sequenceNumber,
long timestamp)
Deprecated.
Trace notifications have been expanded with new attributes to take advantage
of the new features provided by the SLEE specification. The
TraceNotification.TraceNotification(String, TraceMBean, NotificationSource, String, javax.slee.facilities.TraceLevel, String, Throwable, long, long)
constructor should be used instead of this constructor. |