public enum AuthenticationParams extends java.lang.Enum<AuthenticationParams>
| Enum Constant and Description |
|---|
ACCESS_TOKEN
Access Token
|
CLIENT_IP
Client Ip address
|
CODE
Authentication Code
|
LOGIN
Login of the user in the external authentication facility, e.g. an LDAP login name
|
PASSWORD
Password of the user in the external authentication facility
|
PROVIDER
Authentication Provider
|
REFRESH_TOKEN
Refresh Token
|
STATE
Authentication State
|
TOKEN
Authentication Token
|
USERNAME
Username of the user in the external authentication facility, e.g. an LDAP login name
|
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationParams |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationParams[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationParams USERNAME
public static final AuthenticationParams LOGIN
public static final AuthenticationParams PASSWORD
public static final AuthenticationParams CODE
public static final AuthenticationParams STATE
public static final AuthenticationParams PROVIDER
public static final AuthenticationParams TOKEN
public static final AuthenticationParams CLIENT_IP
public static final AuthenticationParams ACCESS_TOKEN
public static final AuthenticationParams REFRESH_TOKEN
public static AuthenticationParams[] values()
for (AuthenticationParams c : AuthenticationParams.values()) System.out.println(c);
public static AuthenticationParams valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null