Enum Class MsgTraceEvent
- All Implemented Interfaces:
Serializable
,Comparable<MsgTraceEvent>
,java.lang.constant.Constable
,TracingLogger.Event
Common tracing events.
- Since:
- 2.3
- Author:
- Libor Kramolis
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionMessageBodyReader
lookup.MessageBodyReader
selected.MessageBodyReader
skipped as higher-priority reader has been selected already.MessageBodyWriter
lookup.MessageBodyWriter
skipped as higher-priority writer has been selected already.ReaderInterceptor
invocation after a call tocontext.proceed()
.ReaderInterceptor
invocation before a call tocontext.proceed()
.ReaderInterceptor
invocation summary.WriterInterceptor
invocation after a call tocontext.proceed()
.WriterInterceptor
invocation before a call tocontext.proceed()
.ReaderInterceptor
invocation summary. -
Method Summary
Modifier and TypeMethodDescriptioncategory()
Category of event, more events share same category.level()
Level of event.Message format.static MsgTraceEvent
Returns the enum constant of this class with the specified name.static MsgTraceEvent[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface org.glassfish.jersey.message.internal.TracingLogger.Event
name
-
Enum Constant Details
-
RI_BEFORE
ReaderInterceptor
invocation before a call tocontext.proceed()
. -
RI_AFTER
ReaderInterceptor
invocation after a call tocontext.proceed()
. -
RI_SUMMARY
ReaderInterceptor
invocation summary. -
MBR_FIND
MessageBodyReader
lookup. -
MBR_NOT_READABLE
-
MBR_SELECTED
MessageBodyReader
selected. -
MBR_SKIPPED
MessageBodyReader
skipped as higher-priority reader has been selected already. -
MBR_READ_FROM
-
MBW_FIND
MessageBodyWriter
lookup. -
MBW_NOT_WRITEABLE
-
MBW_SELECTED
-
MBW_SKIPPED
MessageBodyWriter
skipped as higher-priority writer has been selected already. -
MBW_WRITE_TO
-
WI_BEFORE
WriterInterceptor
invocation before a call tocontext.proceed()
. -
WI_AFTER
WriterInterceptor
invocation after a call tocontext.proceed()
. -
WI_SUMMARY
ReaderInterceptor
invocation summary.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
category
Description copied from interface:TracingLogger.Event
Category of event, more events share same category. Is used to format response HTTP header.- Specified by:
category
in interfaceTracingLogger.Event
- Returns:
- event category.
-
level
Description copied from interface:TracingLogger.Event
Level of event. Is used to check if the event is logged according to application/request settings.- Specified by:
level
in interfaceTracingLogger.Event
- Returns:
- event trace level.
-
messageFormat
Description copied from interface:TracingLogger.Event
Message format. UseString.format(String, Object...)
format. Can be null. In that case message arguments are separated by space.- Specified by:
messageFormat
in interfaceTracingLogger.Event
- Returns:
- message format
-