public static enum OidcTenantConfig.Credentials.Secret.Method extends Enum<OidcTenantConfig.Credentials.Secret.Method>
| Enum Constant and Description |
|---|
BASIC
client_secret_basic (default): client id and secret are submitted with the HTTP Authorization Basic scheme
|
POST
client_secret_post: client id and secret are submitted as the 'client_id' and 'client_secret' form
parameters.
|
| Modifier and Type | Method and Description |
|---|---|
static OidcTenantConfig.Credentials.Secret.Method |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OidcTenantConfig.Credentials.Secret.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OidcTenantConfig.Credentials.Secret.Method BASIC
public static final OidcTenantConfig.Credentials.Secret.Method POST
public static OidcTenantConfig.Credentials.Secret.Method[] values()
for (OidcTenantConfig.Credentials.Secret.Method c : OidcTenantConfig.Credentials.Secret.Method.values()) System.out.println(c);
public static OidcTenantConfig.Credentials.Secret.Method 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 © 2020 JBoss by Red Hat. All rights reserved.