com.ibm.ras
Interface RASITraceEvent
All known implementing classes:
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
Modifier and Type | Field and Description |
---|---|
|
ALL_TRACE_MASK
Deprecated. Defines a mask containing all of the possible trace types.
|
|
DEFAULT_TRACE_MASK
Deprecated. Defines the default mask, which includes the trace types to be
processed.
|
|
TYPE_API
Deprecated. Defines an Application Programming Interface (API)
trace point.
|
|
TYPE_CALLBACK
Deprecated. Defines a callback method trace point.
|
|
TYPE_ENTRY_EXIT
Deprecated. Defines method entry and exit trace points.
|
|
TYPE_ERROR_EXC
Deprecated. Defines an error or exception condition trace point.
|
|
TYPE_LEVEL1
Deprecated. Defines a "low-detail" trace point.
|
|
TYPE_LEVEL2
Deprecated. Defines a "medium-detail" trace point.
|
|
TYPE_LEVEL3
Deprecated. Defines a "high-detail" trace point.
|
|
TYPE_MISC_DATA
Deprecated. Defines a miscellaneous data trace point.
|
|
TYPE_OBJ_CREATE
Deprecated. Defines an object creation (constructor) trace point.
|
|
TYPE_OBJ_DELETE
Deprecated. Defines an object deletion (destructor) trace point.
|
|
TYPE_PERF
Deprecated. Defines a performance-monitoring trace point.
|
|
TYPE_PRIVATE
Deprecated. Defines a
private method trace point.
|
|
TYPE_PUBLIC
Deprecated. Defines a public method trace point.
|
|
TYPE_STATIC
Deprecated. Defines a static method trace point.
|
|
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:
TYPE_CALLBACK
- static final long TYPE_CALLBACK
Deprecated.
Defines a callback method trace point.
See Also:
TYPE_ENTRY_EXIT
- static final long TYPE_ENTRY_EXIT
Deprecated.
Defines method entry and exit trace points.
See Also:
TYPE_ERROR_EXC
- static final long TYPE_ERROR_EXC
Deprecated.
Defines an error or exception condition trace point.
See Also:
TYPE_MISC_DATA
- static final long TYPE_MISC_DATA
Deprecated.
Defines a miscellaneous data trace point.
See Also:
TYPE_OBJ_CREATE
- static final long TYPE_OBJ_CREATE
Deprecated.
Defines an object creation (constructor) trace point.
See Also:
TYPE_OBJ_DELETE
- static final long TYPE_OBJ_DELETE
Deprecated.
Defines an object deletion (destructor) trace point.
See Also:
TYPE_PRIVATE
- static final long TYPE_PRIVATE
Deprecated.
Defines a
private
method trace point.
See Also:
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:
TYPE_STATIC
- static final long TYPE_STATIC
Deprecated.
Defines a static method trace point.
See Also:
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:
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:
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:
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:
TYPE_PERF
- static final long TYPE_PERF
Deprecated.
Defines a performance-monitoring trace point.
See Also:
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:
ALL_TRACE_MASK
- static final long ALL_TRACE_MASK
Deprecated.
Defines a mask containing all of the possible trace types.
See Also: