Package org.keycloak.policy
Class RecoveryCodesWarningThresholdPasswordPolicyProviderFactory
java.lang.Object
org.keycloak.policy.RecoveryCodesWarningThresholdPasswordPolicyProviderFactory
- All Implemented Interfaces:
PasswordPolicyProvider
,PasswordPolicyProviderFactory
,EnvironmentDependentProviderFactory
,Provider
,ProviderFactory<PasswordPolicyProvider>
public class RecoveryCodesWarningThresholdPasswordPolicyProviderFactory
extends Object
implements PasswordPolicyProviderFactory, PasswordPolicyProvider, EnvironmentDependentProviderFactory
- Author:
- Stian Thorgersen
-
Field Summary
Fields inherited from interface org.keycloak.policy.PasswordPolicyProvider
INT_CONFIG_TYPE, STRING_CONFIG_TYPE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
This is called when the server shuts down.create
(KeycloakSession session) getId()
void
init
(Config.Scope config) Only called once when the factory is first created.boolean
boolean
isSupported
(Config.Scope config) Check if the provider is supported and should be available based on the provider configuration.parseConfig
(String value) void
postInit
(KeycloakSessionFactory factory) Called after all provider factories have been initializedvalidate
(RealmModel realm, UserModel user, String password) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.keycloak.policy.PasswordPolicyProvider
parseInteger
Methods inherited from interface org.keycloak.provider.ProviderFactory
getConfigMetadata, order
-
Constructor Details
-
RecoveryCodesWarningThresholdPasswordPolicyProviderFactory
public RecoveryCodesWarningThresholdPasswordPolicyProviderFactory()
-
-
Method Details
-
create
- Specified by:
create
in interfaceProviderFactory<PasswordPolicyProvider>
-
init
Description copied from interface:ProviderFactory
Only called once when the factory is first created. This config is pulled from keycloak_server.json- Specified by:
init
in interfaceProviderFactory<PasswordPolicyProvider>
-
postInit
Description copied from interface:ProviderFactory
Called after all provider factories have been initialized- Specified by:
postInit
in interfaceProviderFactory<PasswordPolicyProvider>
-
close
public void close()Description copied from interface:ProviderFactory
This is called when the server shuts down.- Specified by:
close
in interfaceProvider
- Specified by:
close
in interfaceProviderFactory<PasswordPolicyProvider>
-
getId
- Specified by:
getId
in interfaceProviderFactory<PasswordPolicyProvider>
-
validate
- Specified by:
validate
in interfacePasswordPolicyProvider
-
validate
- Specified by:
validate
in interfacePasswordPolicyProvider
-
getDisplayName
- Specified by:
getDisplayName
in interfacePasswordPolicyProviderFactory
-
getConfigType
- Specified by:
getConfigType
in interfacePasswordPolicyProviderFactory
-
getDefaultConfigValue
- Specified by:
getDefaultConfigValue
in interfacePasswordPolicyProviderFactory
-
isMultiplSupported
public boolean isMultiplSupported()- Specified by:
isMultiplSupported
in interfacePasswordPolicyProviderFactory
-
parseConfig
- Specified by:
parseConfig
in interfacePasswordPolicyProvider
-
isSupported
Description copied from interface:EnvironmentDependentProviderFactory
Check if the provider is supported and should be available based on the provider configuration.- Specified by:
isSupported
in interfaceEnvironmentDependentProviderFactory
- Parameters:
config
- the provider configuration- Returns:
true
if the provider is supported. Otherwise,false
.
-