public static enum TraceProperties.Include extends Enum<TraceProperties.Include>
Enum Constant and Description |
---|
AUTH_TYPE
Include the authentication type.
|
AUTHORIZATION_HEADER
Include authorization header (if any).
|
CONTEXT_PATH
Include the context path.
|
COOKIES
Include "Cookie" in request and "Set-Cookie" in response headers.
|
ERRORS
Include errors (if any).
|
PARAMETERS
Include the parameters.
|
PATH_INFO
Include path info.
|
PATH_TRANSLATED
Include the translated path.
|
QUERY_STRING
Include the query string.
|
REMOTE_ADDRESS
Include the remote address.
|
REMOTE_USER
Include the remote user.
|
REQUEST_HEADERS
Include request headers.
|
RESPONSE_HEADERS
Include response headers.
|
SESSION_ID
Include the session ID.
|
TIME_TAKEN
Include the time taken to service the request in milliseconds.
|
USER_PRINCIPAL
Include the user principal.
|
Modifier and Type | Method and Description |
---|---|
static TraceProperties.Include |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraceProperties.Include[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraceProperties.Include REQUEST_HEADERS
public static final TraceProperties.Include RESPONSE_HEADERS
public static final TraceProperties.Include COOKIES
public static final TraceProperties.Include AUTHORIZATION_HEADER
public static final TraceProperties.Include ERRORS
public static final TraceProperties.Include PATH_INFO
public static final TraceProperties.Include PATH_TRANSLATED
public static final TraceProperties.Include CONTEXT_PATH
public static final TraceProperties.Include USER_PRINCIPAL
public static final TraceProperties.Include PARAMETERS
public static final TraceProperties.Include QUERY_STRING
public static final TraceProperties.Include AUTH_TYPE
public static final TraceProperties.Include REMOTE_ADDRESS
public static final TraceProperties.Include SESSION_ID
public static final TraceProperties.Include REMOTE_USER
public static final TraceProperties.Include TIME_TAKEN
public static TraceProperties.Include[] values()
for (TraceProperties.Include c : TraceProperties.Include.values()) System.out.println(c);
public static TraceProperties.Include valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2018 Pivotal Software, Inc.. All rights reserved.