Package org.keycloak.policy
Class HashAlgorithmPasswordPolicyProviderFactory
- java.lang.Object
-
- org.keycloak.policy.HashAlgorithmPasswordPolicyProviderFactory
-
- All Implemented Interfaces:
PasswordPolicyProvider
,PasswordPolicyProviderFactory
,Provider
,ProviderFactory<PasswordPolicyProvider>
public class HashAlgorithmPasswordPolicyProviderFactory extends Object implements PasswordPolicyProviderFactory, PasswordPolicyProvider
- Author:
- Stian Thorgersen
-
-
Field Summary
-
Fields inherited from interface org.keycloak.policy.PasswordPolicyProvider
INT_CONFIG_TYPE, STRING_CONFIG_TYPE
-
-
Constructor Summary
Constructors Constructor Description HashAlgorithmPasswordPolicyProviderFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
This is called when the server shuts down.PasswordPolicyProvider
create(KeycloakSession session)
String
getConfigType()
String
getDefaultConfigValue()
String
getDisplayName()
String
getId()
void
init(Config.Scope config)
Only called once when the factory is first created.boolean
isMultiplSupported()
Object
parseConfig(String value)
void
postInit(KeycloakSessionFactory factory)
Called after all provider factories have been initializedPolicyError
validate(String user, String password)
PolicyError
validate(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
-
-
-
-
Method Detail
-
create
public PasswordPolicyProvider create(KeycloakSession session)
- Specified by:
create
in interfaceProviderFactory<PasswordPolicyProvider>
-
init
public void init(Config.Scope config)
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
public void postInit(KeycloakSessionFactory factory)
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
public String getId()
- Specified by:
getId
in interfaceProviderFactory<PasswordPolicyProvider>
-
validate
public PolicyError validate(RealmModel realm, UserModel user, String password)
- Specified by:
validate
in interfacePasswordPolicyProvider
-
validate
public PolicyError validate(String user, String password)
- Specified by:
validate
in interfacePasswordPolicyProvider
-
getDisplayName
public String getDisplayName()
- Specified by:
getDisplayName
in interfacePasswordPolicyProviderFactory
-
getConfigType
public String getConfigType()
- Specified by:
getConfigType
in interfacePasswordPolicyProviderFactory
-
getDefaultConfigValue
public String getDefaultConfigValue()
- Specified by:
getDefaultConfigValue
in interfacePasswordPolicyProviderFactory
-
isMultiplSupported
public boolean isMultiplSupported()
- Specified by:
isMultiplSupported
in interfacePasswordPolicyProviderFactory
-
parseConfig
public Object parseConfig(String value)
- Specified by:
parseConfig
in interfacePasswordPolicyProvider
-
-