public static enum DelegatedTokenCredentials.ResponseMode extends Enum<DelegatedTokenCredentials.ResponseMode>
Enum Constant and Description |
---|
FORM_DATA
the token is sent as part of a form data.
|
QUERY
the token is sent as a query parameter.
|
Modifier and Type | Method and Description |
---|---|
static DelegatedTokenCredentials.ResponseMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DelegatedTokenCredentials.ResponseMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DelegatedTokenCredentials.ResponseMode QUERY
public static final DelegatedTokenCredentials.ResponseMode FORM_DATA
public static DelegatedTokenCredentials.ResponseMode[] values()
for (DelegatedTokenCredentials.ResponseMode c : DelegatedTokenCredentials.ResponseMode.values()) System.out.println(c);
public static DelegatedTokenCredentials.ResponseMode 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 © 2019. All rights reserved.