public enum GrantType extends Enum<GrantType>
| Enum Constant and Description |
|---|
AUTHORIZATION_CODE |
CLIENT_CREDENTIALS |
CLIENT_X509
Deprecated.
SAP proprietary grant type.
|
JWT_BEARER |
PASSWORD |
REFRESH_TOKEN |
SAML2_BEARER |
USER_TOKEN
Deprecated.
in favor of
JWT_BEARER. |
| Modifier and Type | Method and Description |
|---|---|
static GrantType |
from(String claimName) |
String |
toString() |
static GrantType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GrantType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GrantType CLIENT_CREDENTIALS
@Deprecated public static final GrantType USER_TOKEN
JWT_BEARER.public static final GrantType REFRESH_TOKEN
public static final GrantType PASSWORD
public static final GrantType JWT_BEARER
public static final GrantType SAML2_BEARER
@Deprecated public static final GrantType CLIENT_X509
public static final GrantType AUTHORIZATION_CODE
public static GrantType[] values()
for (GrantType c : GrantType.values()) System.out.println(c);
public static GrantType 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 © 2024. All rights reserved.