Enum Class RequestLogProperty
- All Implemented Interfaces:
Serializable
,Comparable<RequestLogProperty>
,java.lang.constant.Constable
A property of
RequestLog
, used for identifying properties that have been populated during request
processing.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic Set<RequestLogProperty>
Returns all of theRequestLogProperty
s.boolean
isAvailable
(int flags) Check if this property is available by using the specified flags which represents the currently available properties.static Set<RequestLogProperty>
Returns theRequestLogProperty
s for requests.static Set<RequestLogProperty>
Returns theRequestLogProperty
s for responses.static RequestLogProperty
Returns the enum constant of this class with the specified name.static RequestLogProperty[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
REQUEST_START_TIME
-
REQUEST_END_TIME
-
REQUEST_FIRST_BYTES_TRANSFERRED_TIME
-
SESSION
-
SCHEME
-
NAME
-
AUTHENTICATED_USER
-
REQUEST_HEADERS
-
REQUEST_CONTENT
-
REQUEST_CONTENT_PREVIEW
-
REQUEST_TRAILERS
-
REQUEST_LENGTH
-
REQUEST_CAUSE
-
RESPONSE_START_TIME
-
RESPONSE_END_TIME
-
RESPONSE_FIRST_BYTES_TRANSFERRED_TIME
-
RESPONSE_HEADERS
-
RESPONSE_CONTENT
-
RESPONSE_CONTENT_PREVIEW
-
RESPONSE_TRAILERS
-
RESPONSE_LENGTH
-
RESPONSE_CAUSE
-
-
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
-
requestProperties
Returns theRequestLogProperty
s for requests. -
responseProperties
Returns theRequestLogProperty
s for responses. -
allProperties
Returns all of theRequestLogProperty
s. -
isAvailable
public boolean isAvailable(int flags) Check if this property is available by using the specified flags which represents the currently available properties.
-