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 SummaryNested Classes Modifier and Type Class Description static classProfile.Feature.Type
 - 
Enum Constant Summary
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<Profile.Feature>getDependencies()StringgetKey()StringgetLabel()Profile.Feature.TypegetType()static Profile.FeaturevalueOf(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- 
AUTHORIZATIONpublic static final Profile.Feature AUTHORIZATION 
 - 
ACCOUNT_APIpublic static final Profile.Feature ACCOUNT_API 
 - 
ACCOUNT2public static final Profile.Feature ACCOUNT2 
 - 
ACCOUNT3public static final Profile.Feature ACCOUNT3 
 - 
ADMIN_FINE_GRAINED_AUTHZpublic static final Profile.Feature ADMIN_FINE_GRAINED_AUTHZ 
 - 
ADMIN_APIpublic static final Profile.Feature ADMIN_API 
 - 
ADMIN2public static final Profile.Feature ADMIN2 
 - 
DOCKERpublic static final Profile.Feature DOCKER 
 - 
IMPERSONATIONpublic static final Profile.Feature IMPERSONATION 
 - 
OPENSHIFT_INTEGRATIONpublic static final Profile.Feature OPENSHIFT_INTEGRATION 
 - 
SCRIPTSpublic static final Profile.Feature SCRIPTS 
 - 
TOKEN_EXCHANGEpublic static final Profile.Feature TOKEN_EXCHANGE 
 - 
WEB_AUTHNpublic static final Profile.Feature WEB_AUTHN 
 - 
CLIENT_POLICIESpublic static final Profile.Feature CLIENT_POLICIES 
 - 
CIBApublic static final Profile.Feature CIBA 
 - 
MAP_STORAGEpublic static final Profile.Feature MAP_STORAGE 
 - 
PARpublic static final Profile.Feature PAR 
 - 
DECLARATIVE_USER_PROFILEpublic static final Profile.Feature DECLARATIVE_USER_PROFILE 
 - 
DYNAMIC_SCOPESpublic static final Profile.Feature DYNAMIC_SCOPES 
 - 
CLIENT_SECRET_ROTATIONpublic static final Profile.Feature CLIENT_SECRET_ROTATION 
 - 
STEP_UP_AUTHENTICATIONpublic static final Profile.Feature STEP_UP_AUTHENTICATION 
 - 
KERBEROSpublic static final Profile.Feature KERBEROS 
 - 
RECOVERY_CODESpublic static final Profile.Feature RECOVERY_CODES 
 - 
UPDATE_EMAILpublic static final Profile.Feature UPDATE_EMAIL 
 - 
JS_ADAPTERpublic static final Profile.Feature JS_ADAPTER 
 - 
FIPSpublic static final Profile.Feature FIPS 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
getKeypublic String getKey() 
 - 
getLabelpublic String getLabel() 
 - 
getTypepublic Profile.Feature.Type getType() 
 - 
getDependenciespublic Set<Profile.Feature> getDependencies() 
 
- 
 
-