public static enum OidcTenantConfig.TokenStateManager.Strategy extends Enum<OidcTenantConfig.TokenStateManager.Strategy>
| Enum Constant and Description |
|---|
ID_REFRESH_TOKENS
Keep ID and refresh tokens only
|
ID_TOKEN
Keep ID token only
|
KEEP_ALL_TOKENS
Keep ID, access and refresh tokens.
|
| Modifier and Type | Method and Description |
|---|---|
static OidcTenantConfig.TokenStateManager.Strategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OidcTenantConfig.TokenStateManager.Strategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OidcTenantConfig.TokenStateManager.Strategy KEEP_ALL_TOKENS
public static final OidcTenantConfig.TokenStateManager.Strategy ID_TOKEN
public static final OidcTenantConfig.TokenStateManager.Strategy ID_REFRESH_TOKENS
public static OidcTenantConfig.TokenStateManager.Strategy[] values()
for (OidcTenantConfig.TokenStateManager.Strategy c : OidcTenantConfig.TokenStateManager.Strategy.values()) System.out.println(c);
public static OidcTenantConfig.TokenStateManager.Strategy 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 © 2021 JBoss by Red Hat. All rights reserved.