public static enum OidcTenantConfig.ApplicationType extends Enum<OidcTenantConfig.ApplicationType>
| Enum Constant and Description |
|---|
HYBRID
A combined
SERVICE and WEB_APP client. |
SERVICE
A
SERVICE is a client that has a set of protected HTTP resources, usually a backend application following the
RESTful Architectural Design. |
WEB_APP
A
WEB_APP is a client that serves pages, usually a frontend application. |
| Modifier and Type | Method and Description |
|---|---|
static OidcTenantConfig.ApplicationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OidcTenantConfig.ApplicationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OidcTenantConfig.ApplicationType WEB_APP
WEB_APP is a client that serves pages, usually a frontend application. For this type of client the
Authorization Code Flow is defined as the preferred method for authenticating users.public static final OidcTenantConfig.ApplicationType SERVICE
SERVICE is a client that has a set of protected HTTP resources, usually a backend application following the
RESTful Architectural Design. For this type of client, the Bearer Authorization method is defined as the preferred
method for authenticating and authorizing users.public static final OidcTenantConfig.ApplicationType HYBRID
SERVICE and WEB_APP client.
For this type of client, the Bearer Authorization method will be used if the Authorization header is set
and Authorization Code Flow - if not.public static OidcTenantConfig.ApplicationType[] values()
for (OidcTenantConfig.ApplicationType c : OidcTenantConfig.ApplicationType.values()) System.out.println(c);
public static OidcTenantConfig.ApplicationType 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.