public enum Include extends Enum<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 Set<Include> |
defaultIncludes()
Return the default
Include . |
static Include |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Include[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Include REQUEST_HEADERS
public static final Include RESPONSE_HEADERS
public static final Include COOKIES
public static final Include AUTHORIZATION_HEADER
public static final Include ERRORS
public static final Include PATH_INFO
public static final Include PATH_TRANSLATED
public static final Include CONTEXT_PATH
public static final Include USER_PRINCIPAL
public static final Include PARAMETERS
public static final Include QUERY_STRING
public static final Include AUTH_TYPE
public static final Include REMOTE_ADDRESS
public static final Include SESSION_ID
public static final Include REMOTE_USER
public static final Include TIME_TAKEN
public static Include[] values()
for (Include c : Include.values()) System.out.println(c);
public static 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 © 2017 Pivotal Software, Inc.. All rights reserved.