com.ibm.ras

Interface RASITraceEvent

All known implementing classes:
RASTraceEvent, RASTraceLogger, WsJrasTraceLogger

Deprecated. As of WAS 6.0, recommend using java.util.logging
  1. public interface RASITraceEvent
RASITraceEvent defines a set of constants related to RASTraceEvents.

Field Summary

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

Field Detail

TYPE_API

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

TYPE_CALLBACK

  1. static final long TYPE_CALLBACK
Deprecated.
Defines a callback method trace point.
See Also:

TYPE_ENTRY_EXIT

  1. static final long TYPE_ENTRY_EXIT
Deprecated.
Defines method entry and exit trace points.
See Also:

TYPE_ERROR_EXC

  1. static final long TYPE_ERROR_EXC
Deprecated.
Defines an error or exception condition trace point.
See Also:

TYPE_MISC_DATA

  1. static final long TYPE_MISC_DATA
Deprecated.
Defines a miscellaneous data trace point.
See Also:

TYPE_OBJ_CREATE

  1. static final long TYPE_OBJ_CREATE
Deprecated.
Defines an object creation (constructor) trace point.
See Also:

TYPE_OBJ_DELETE

  1. static final long TYPE_OBJ_DELETE
Deprecated.
Defines an object deletion (destructor) trace point.
See Also:

TYPE_PRIVATE

  1. static final long TYPE_PRIVATE
Deprecated.
Defines a private method trace point.
See Also:

TYPE_PUBLIC

  1. 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:

TYPE_STATIC

  1. static final long TYPE_STATIC
Deprecated.
Defines a static method trace point.
See Also:

TYPE_SVC

  1. 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:

TYPE_LEVEL1

  1. 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:

TYPE_LEVEL2

  1. 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:

TYPE_LEVEL3

  1. 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:

TYPE_PERF

  1. static final long TYPE_PERF
Deprecated.
Defines a performance-monitoring trace point.
See Also:

DEFAULT_TRACE_MASK

  1. 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:

ALL_TRACE_MASK

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