public static enum OidcBuildTimeConfig.ApplicationType extends Enum<OidcBuildTimeConfig.ApplicationType>
| Enum Constant and Description |
|---|
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 server pages, usually a frontend application. |
| Modifier and Type | Method and Description |
|---|---|
static OidcBuildTimeConfig.ApplicationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OidcBuildTimeConfig.ApplicationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OidcBuildTimeConfig.ApplicationType WEB_APP
WEB_APP is a client that server 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 OidcBuildTimeConfig.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 OidcBuildTimeConfig.ApplicationType[] values()
for (OidcBuildTimeConfig.ApplicationType c : OidcBuildTimeConfig.ApplicationType.values()) System.out.println(c);
public static OidcBuildTimeConfig.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.