Enum Class ServerTraceEvent
- All Implemented Interfaces:
Serializable
,Comparable<ServerTraceEvent>
,java.lang.constant.Constable
,TracingLogger.Event
Server side 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 ConstantDescriptionResource method invocation results to JAX-RSResponse
.ExceptionMapper
invoked.Request processing finished.Matched sub-resource locator method.Matching path pattern.Path pattern not matched.Path pattern matched/selected.Path pattern skipped as higher-priority pattern has been selected already.Matched resource instance.Matched resource method.Matched runtime resource.Matching summary.Resource method invoked.PreMatching
ContainerRequestFilter
invoked.PreMatching
ContainerRequestFilter
invocation summary.GlobalContainerRequestFilter
invoked.GlobalContainerRequestFilter
invocation summary.ContainerResponseFilter
invoked.ContainerResponseFilter
invocation summary.Request processing started.All HTTP request headers. -
Method Summary
Modifier and TypeMethodDescriptioncategory()
Category of event, more events share same category.level()
Level of event.Message format.static ServerTraceEvent
Returns the enum constant of this class with the specified name.static ServerTraceEvent[]
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
-
START
Request processing started. -
START_HEADERS
All HTTP request headers. -
PRE_MATCH
PreMatching
ContainerRequestFilter
invoked. -
PRE_MATCH_SUMMARY
PreMatching
ContainerRequestFilter
invocation summary. -
MATCH_PATH_FIND
Matching path pattern. -
MATCH_PATH_NOT_MATCHED
Path pattern not matched. -
MATCH_PATH_SELECTED
Path pattern matched/selected. -
MATCH_PATH_SKIPPED
Path pattern skipped as higher-priority pattern has been selected already. -
MATCH_LOCATOR
Matched sub-resource locator method. -
MATCH_RESOURCE_METHOD
Matched resource method. -
MATCH_RUNTIME_RESOURCE
Matched runtime resource. -
MATCH_RESOURCE
Matched resource instance. -
MATCH_SUMMARY
Matching summary. -
REQUEST_FILTER
GlobalContainerRequestFilter
invoked. -
REQUEST_FILTER_SUMMARY
GlobalContainerRequestFilter
invocation summary. -
METHOD_INVOKE
Resource method invoked. -
DISPATCH_RESPONSE
Resource method invocation results to JAX-RSResponse
. -
RESPONSE_FILTER
ContainerResponseFilter
invoked. -
RESPONSE_FILTER_SUMMARY
ContainerResponseFilter
invocation summary. -
FINISHED
Request processing finished. -
EXCEPTION_MAPPING
ExceptionMapper
invoked.
-
-
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
-