public static enum OidcTenantConfig.Roles.Source extends Enum<OidcTenantConfig.Roles.Source>
| Enum Constant and Description |
|---|
accesstoken
Access Token - the default value for the 'service' applications;
can also be used as the source of roles for the 'web-app' applications.
|
idtoken
ID Token - the default value for the 'web-app' applications.
|
userinfo
User Info
|
| Modifier and Type | Method and Description |
|---|---|
static OidcTenantConfig.Roles.Source |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OidcTenantConfig.Roles.Source[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OidcTenantConfig.Roles.Source idtoken
public static final OidcTenantConfig.Roles.Source accesstoken
public static final OidcTenantConfig.Roles.Source userinfo
public static OidcTenantConfig.Roles.Source[] values()
for (OidcTenantConfig.Roles.Source c : OidcTenantConfig.Roles.Source.values()) System.out.println(c);
public static OidcTenantConfig.Roles.Source 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.