Package org.keycloak.policy
Class MaxAuthAgePasswordPolicyProviderFactory
java.lang.Object
org.keycloak.policy.MaxAuthAgePasswordPolicyProviderFactory
- All Implemented Interfaces:
PasswordPolicyProvider
,PasswordPolicyProviderFactory
,Provider
,ProviderFactory<PasswordPolicyProvider>
public class MaxAuthAgePasswordPolicyProviderFactory
extends Object
implements PasswordPolicyProvider, PasswordPolicyProviderFactory
Specifies the maximum age of an authentication with which a password may be changed without re-authentication.
-
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
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
-
Field Details
-
DEFAULT_MAX_AUTH_AGE
public static final int DEFAULT_MAX_AUTH_AGE- See Also:
-
-
Constructor Details
-
MaxAuthAgePasswordPolicyProviderFactory
public MaxAuthAgePasswordPolicyProviderFactory()
-
-
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>
-
getId
- Specified by:
getId
in interfaceProviderFactory<PasswordPolicyProvider>
-
validate
- Specified by:
validate
in interfacePasswordPolicyProvider
-
validate
- Specified by:
validate
in interfacePasswordPolicyProvider
-
parseConfig
- Specified by:
parseConfig
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
-
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>
-