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>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Profile.Feature.Type
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<Profile.Feature>
getDependencies()
String
getKey()
String
getLabel()
Profile.Feature.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
-
ACCOUNT_API
public static final Profile.Feature ACCOUNT_API
-
ACCOUNT2
public static final Profile.Feature ACCOUNT2
-
ADMIN_FINE_GRAINED_AUTHZ
public static final Profile.Feature ADMIN_FINE_GRAINED_AUTHZ
-
ADMIN_API
public static final Profile.Feature ADMIN_API
-
ADMIN2
public static final Profile.Feature ADMIN2
-
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
-
KERBEROS
public static final Profile.Feature KERBEROS
-
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
-
FIPS
public static final Profile.Feature FIPS
-
-
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
-
getKey
public String getKey()
-
getLabel
public String getLabel()
-
getType
public Profile.Feature.Type getType()
-
getDependencies
public Set<Profile.Feature> getDependencies()
-
-