Package org.keycloak.common
Enum Profile.Feature
- java.lang.Object
-
- java.lang.Enum<Profile.Feature>
-
- org.keycloak.common.Profile.Feature
-
- All Implemented Interfaces:
Serializable
,Comparable<Profile.Feature>
- Enclosing class:
- Profile
public static enum Profile.Feature extends Enum<Profile.Feature>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNT_API
ACCOUNT2
ADMIN
Deprecated.ADMIN_API
Controls the availability of the Admin REST-API.ADMIN_FINE_GRAINED_AUTHZ
ADMIN2
Controls the availability of the admin-console.AUTHORIZATION
CIBA
CLIENT_POLICIES
CLIENT_SECRET_ROTATION
DECLARATIVE_USER_PROFILE
DOCKER
DYNAMIC_SCOPES
IMPERSONATION
JS_ADAPTER
MAP_STORAGE
OPENSHIFT_INTEGRATION
PAR
RECOVERY_CODES
SCRIPTS
STEP_UP_AUTHENTICATION
TOKEN_EXCHANGE
UPDATE_EMAIL
WEB_AUTHN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getLabel()
Profile.Type
getType()
static Profile.Feature
valueOf(String name)
Returns the enum constant of this type with the specified name.static Profile.Feature[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHORIZATION
public static final Profile.Feature AUTHORIZATION
-
ACCOUNT2
public static final Profile.Feature ACCOUNT2
-
ACCOUNT_API
public static final Profile.Feature ACCOUNT_API
-
ADMIN_FINE_GRAINED_AUTHZ
public static final Profile.Feature ADMIN_FINE_GRAINED_AUTHZ
-
ADMIN_API
public static final Profile.Feature ADMIN_API
Controls the availability of the Admin REST-API.
-
ADMIN
@Deprecated public static final Profile.Feature ADMIN
Deprecated.Controls the availability of the legacy admin-console. Note that the admin-console requires theADMIN_API
feature.
-
ADMIN2
public static final Profile.Feature ADMIN2
Controls the availability of the admin-console. Note that the admin-console requires theADMIN_API
feature.
-
DOCKER
public static final Profile.Feature DOCKER
-
IMPERSONATION
public static final Profile.Feature IMPERSONATION
-
OPENSHIFT_INTEGRATION
public static final Profile.Feature OPENSHIFT_INTEGRATION
-
SCRIPTS
public static final Profile.Feature SCRIPTS
-
TOKEN_EXCHANGE
public static final Profile.Feature TOKEN_EXCHANGE
-
WEB_AUTHN
public static final Profile.Feature WEB_AUTHN
-
CLIENT_POLICIES
public static final Profile.Feature CLIENT_POLICIES
-
CIBA
public static final Profile.Feature CIBA
-
MAP_STORAGE
public static final Profile.Feature MAP_STORAGE
-
PAR
public static final Profile.Feature PAR
-
DECLARATIVE_USER_PROFILE
public static final Profile.Feature DECLARATIVE_USER_PROFILE
-
DYNAMIC_SCOPES
public static final Profile.Feature DYNAMIC_SCOPES
-
CLIENT_SECRET_ROTATION
public static final Profile.Feature CLIENT_SECRET_ROTATION
-
STEP_UP_AUTHENTICATION
public static final Profile.Feature STEP_UP_AUTHENTICATION
-
RECOVERY_CODES
public static final Profile.Feature RECOVERY_CODES
-
UPDATE_EMAIL
public static final Profile.Feature UPDATE_EMAIL
-
JS_ADAPTER
public static final Profile.Feature JS_ADAPTER
-
-
Method Detail
-
values
public static Profile.Feature[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Profile.Feature c : Profile.Feature.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Profile.Feature valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getLabel
public String getLabel()
-
getType
public Profile.Type getType()
-
-