IBM WebSphere Application ServerTM
Release 8

com.ibm.ras
Interface RASITraceEvent

All Known Implementing Classes:
RASTraceEvent, RASTraceLogger, WsJrasTraceLogger

Deprecated. As of WAS 6.0, recommend using java.util.logging

public interface RASITraceEvent

RASITraceEvent defines a set of constants related to RASTraceEvents.


Field Summary
static long ALL_TRACE_MASK
          Deprecated. Defines a mask containing all of the possible trace types.
static long DEFAULT_TRACE_MASK
          Deprecated. Defines the default mask, which includes the trace types to be processed.
static long TYPE_API
          Deprecated. Defines an Application Programming Interface (API) trace point.
static long TYPE_CALLBACK
          Deprecated. Defines a callback method trace point.
static long TYPE_ENTRY_EXIT
          Deprecated. Defines method entry and exit trace points.
static long TYPE_ERROR_EXC
          Deprecated. Defines an error or exception condition trace point.
static long TYPE_FFDC
          Deprecated. Defines a FFDC point for generating FFDC
static long TYPE_LEVEL1
          Deprecated. Defines a "low-detail" trace point.
static long TYPE_LEVEL2
          Deprecated. Defines a "medium-detail" trace point.
static long TYPE_LEVEL3
          Deprecated. Defines a "high-detail" trace point.
static long TYPE_MISC_DATA
          Deprecated. Defines a miscellaneous data trace point.
static long TYPE_OBJ_CREATE
          Deprecated. Defines an object creation (constructor) trace point.
static long TYPE_OBJ_DELETE
          Deprecated. Defines an object deletion (destructor) trace point.
static long TYPE_PERF
          Deprecated. Defines a performance-monitoring trace point.
static long TYPE_PRIVATE
          Deprecated. Defines a private method trace point.
static long TYPE_PUBLIC
          Deprecated. Defines a public method trace point.
static long TYPE_STATIC
          Deprecated. Defines a static method trace point.
static long TYPE_SVC
          Deprecated. Defines a service code trace point.
 

Field Detail

TYPE_API

static final long TYPE_API
Deprecated. 
Defines an Application Programming Interface (API) trace point.

See Also:
Constant Field Values

TYPE_CALLBACK

static final long TYPE_CALLBACK
Deprecated. 
Defines a callback method trace point.

See Also:
Constant Field Values

TYPE_ENTRY_EXIT

static final long TYPE_ENTRY_EXIT
Deprecated. 
Defines method entry and exit trace points.

See Also:
Constant Field Values

TYPE_ERROR_EXC

static final long TYPE_ERROR_EXC
Deprecated. 
Defines an error or exception condition trace point.

See Also:
Constant Field Values

TYPE_MISC_DATA

static final long TYPE_MISC_DATA
Deprecated. 
Defines a miscellaneous data trace point.

See Also:
Constant Field Values

TYPE_OBJ_CREATE

static final long TYPE_OBJ_CREATE
Deprecated. 
Defines an object creation (constructor) trace point.

See Also:
Constant Field Values

TYPE_OBJ_DELETE

static final long TYPE_OBJ_DELETE
Deprecated. 
Defines an object deletion (destructor) trace point.

See Also:
Constant Field Values

TYPE_PRIVATE

static final long TYPE_PRIVATE
Deprecated. 
Defines a private method trace point.

See Also:
Constant Field Values

TYPE_PUBLIC

static final long TYPE_PUBLIC
Deprecated. 
Defines a public method trace point. (This typically includes package and protected scope, as all of these methods may be used by other classes.)

See Also:
Constant Field Values

TYPE_STATIC

static final long TYPE_STATIC
Deprecated. 
Defines a static method trace point.

See Also:
Constant Field Values

TYPE_SVC

static final long TYPE_SVC
Deprecated. 
Defines a service code trace point. Service code is generally "low-level" code which provides commonly used services to other classes.

See Also:
Constant Field Values

TYPE_LEVEL1

static final long TYPE_LEVEL1
Deprecated. 
Defines a "low-detail" trace point. Some trace implementations prefer the notion of a "trace level," in which level 1 implies minimal detail, level 2 implies more detail and level 3 implies the most detail. In such a system, these three types would be used exclusively.

See Also:
Constant Field Values

TYPE_LEVEL2

static final long TYPE_LEVEL2
Deprecated. 
Defines a "medium-detail" trace point. Some trace implementations prefer the notion of a "trace level," in which level 1 implies minimal detail, level 2 implies more detail and level 3 implies the most detail. In such a system, these three types would be used exclusively.

See Also:
Constant Field Values

TYPE_LEVEL3

static final long TYPE_LEVEL3
Deprecated. 
Defines a "high-detail" trace point. Some trace implementations prefer the notion of a "trace level," in which level 1 implies minimal detail, level 2 implies more detail and level 3 implies the most detail. In such a system, these three types would be used exclusively.

See Also:
Constant Field Values

TYPE_PERF

static final long TYPE_PERF
Deprecated. 
Defines a performance-monitoring trace point.

See Also:
Constant Field Values

TYPE_FFDC

static final long TYPE_FFDC
Deprecated. 
Defines a FFDC point for generating FFDC

See Also:
Constant Field Values

DEFAULT_TRACE_MASK

static final long DEFAULT_TRACE_MASK
Deprecated. 
Defines the default mask, which includes the trace types to be processed. This value is used by the loggers and the handlers.

See Also:
Constant Field Values

ALL_TRACE_MASK

static final long ALL_TRACE_MASK
Deprecated. 
Defines a mask containing all of the possible trace types.

See Also:
Constant Field Values

IBM WebSphere Application ServerTM
Release 8