Uses of Interface
org.forgerock.opendj.server.config.server.PasswordValidatorCfg
-
Packages that use PasswordValidatorCfg Package Description org.forgerock.opendj.server.config.client Provides client-side interfaces for querying and managing the Core directory server administrative components.org.forgerock.opendj.server.config.meta Provides introspection interfaces for the Core directory server administrative components.org.forgerock.opendj.server.config.server Provides server-side interfaces for accessing the Core directory server administrative components.org.opends.server.api Contains a number of API declarations for use throughout the Directory Server.org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase. -
-
Uses of PasswordValidatorCfg in org.forgerock.opendj.server.config.client
Methods in org.forgerock.opendj.server.config.client that return types with arguments of type PasswordValidatorCfg Modifier and Type Method Description ManagedObjectDefinition<? extends PasswordValidatorCfgClient,? extends PasswordValidatorCfg>
PasswordValidatorCfgClient. definition()
Get the configuration definition associated with this Password Validator.Method parameters in org.forgerock.opendj.server.config.client with type arguments of type PasswordValidatorCfg Modifier and Type Method Description <C extends PasswordValidatorCfgClient>
CRootCfgClient. createPasswordValidator(ManagedObjectDefinition<C,? extends PasswordValidatorCfg> d, String name, Collection<PropertyException> exceptions)
Creates a new Password Validator. -
Uses of PasswordValidatorCfg in org.forgerock.opendj.server.config.meta
Methods in org.forgerock.opendj.server.config.meta that return PasswordValidatorCfg Modifier and Type Method Description PasswordValidatorCfg
PasswordValidatorCfgDefn. createServerConfiguration(ServerManagedObject<? extends PasswordValidatorCfg> impl)
Methods in org.forgerock.opendj.server.config.meta that return types with arguments of type PasswordValidatorCfg Modifier and Type Method Description AggregationPropertyDefinition<PasswordValidatorCfgClient,PasswordValidatorCfg>
PasswordPolicyCfgDefn. getPasswordValidatorPropertyDefinition()
Get the "password-validator" property definition.InstantiableRelationDefinition<PasswordValidatorCfgClient,PasswordValidatorCfg>
RootCfgDefn. getPasswordValidatorsRelationDefinition()
Get the "password-validators" relation definition.Class<PasswordValidatorCfg>
PasswordValidatorCfgDefn. getServerConfigurationClass()
Method parameters in org.forgerock.opendj.server.config.meta with type arguments of type PasswordValidatorCfg Modifier and Type Method Description PasswordValidatorCfg
PasswordValidatorCfgDefn. createServerConfiguration(ServerManagedObject<? extends PasswordValidatorCfg> impl)
-
Uses of PasswordValidatorCfg in org.forgerock.opendj.server.config.server
Subinterfaces of PasswordValidatorCfg in org.forgerock.opendj.server.config.server Modifier and Type Interface Description interface
AttributeValuePasswordValidatorCfg
A server-side interface for querying Attribute Value Password Validator settings.interface
CharacterSetPasswordValidatorCfg
A server-side interface for querying Character Set Password Validator settings.interface
DictionaryPasswordValidatorCfg
A server-side interface for querying Dictionary Password Validator settings.interface
LengthBasedPasswordValidatorCfg
A server-side interface for querying Length Based Password Validator settings.interface
RepeatedCharactersPasswordValidatorCfg
A server-side interface for querying Repeated Characters Password Validator settings.interface
SimilarityBasedPasswordValidatorCfg
A server-side interface for querying Similarity Based Password Validator settings.interface
UniqueCharactersPasswordValidatorCfg
A server-side interface for querying Unique Characters Password Validator settings.Methods in org.forgerock.opendj.server.config.server that return PasswordValidatorCfg Modifier and Type Method Description PasswordValidatorCfg
RootCfg. getPasswordValidator(String name)
Gets the named Password Validator.Methods in org.forgerock.opendj.server.config.server that return types with arguments of type PasswordValidatorCfg Modifier and Type Method Description Class<? extends PasswordValidatorCfg>
PasswordValidatorCfg. configurationClass()
Gets the configuration class associated with this Password Validator.Method parameters in org.forgerock.opendj.server.config.server with type arguments of type PasswordValidatorCfg Modifier and Type Method Description void
PasswordValidatorCfg. addChangeListener(ConfigurationChangeListener<PasswordValidatorCfg> listener)
Register to be notified when this Password Validator is changed.void
RootCfg. addPasswordValidatorAddListener(ConfigurationAddListener<PasswordValidatorCfg> listener)
Registers to be notified when new Password Validators are added.void
RootCfg. addPasswordValidatorDeleteListener(ConfigurationDeleteListener<PasswordValidatorCfg> listener)
Registers to be notified when existing Password Validators are deleted.void
PasswordValidatorCfg. removeChangeListener(ConfigurationChangeListener<PasswordValidatorCfg> listener)
Deregister an existing Password Validator configuration change listener.void
RootCfg. removePasswordValidatorAddListener(ConfigurationAddListener<PasswordValidatorCfg> listener)
Deregisters an existing Password Validator configuration add listener.void
RootCfg. removePasswordValidatorDeleteListener(ConfigurationDeleteListener<PasswordValidatorCfg> listener)
Deregisters an existing Password Validator configuration delete listener. -
Uses of PasswordValidatorCfg in org.opends.server.api
Classes in org.opends.server.api with type parameters of type PasswordValidatorCfg Modifier and Type Class Description class
PasswordValidator<T extends PasswordValidatorCfg>
This class defines the set of methods and structures that must be implemented by a Directory Server module that may be used to determine whether a proposed password is acceptable for a user. -
Uses of PasswordValidatorCfg in org.opends.server.core
Methods in org.opends.server.core that return types with arguments of type PasswordValidatorCfg Modifier and Type Method Description static PasswordValidator<? extends PasswordValidatorCfg>
DirectoryServer. getPasswordValidator(Dn configEntryDN)
Retrieves the password validator registered with the provided configuration entry DN.Methods in org.opends.server.core with parameters of type PasswordValidatorCfg Modifier and Type Method Description ConfigChangeResult
PasswordValidatorConfigManager. applyConfigurationAdd(PasswordValidatorCfg configuration)
ConfigChangeResult
PasswordValidatorConfigManager. applyConfigurationChange(PasswordValidatorCfg configuration)
ConfigChangeResult
PasswordValidatorConfigManager. applyConfigurationDelete(PasswordValidatorCfg configuration)
boolean
PasswordValidatorConfigManager. isConfigurationAddAcceptable(PasswordValidatorCfg configuration, List<LocalizableMessage> unacceptableReasons)
boolean
PasswordValidatorConfigManager. isConfigurationChangeAcceptable(PasswordValidatorCfg configuration, List<LocalizableMessage> unacceptableReasons)
boolean
PasswordValidatorConfigManager. isConfigurationDeleteAcceptable(PasswordValidatorCfg configuration, List<LocalizableMessage> unacceptableReasons)
Method parameters in org.opends.server.core with type arguments of type PasswordValidatorCfg Modifier and Type Method Description static void
DirectoryServer. registerPasswordValidator(Dn configEntryDN, PasswordValidator<? extends PasswordValidatorCfg> validator)
Registers the provided password validator for use with the Directory Server.
-