Uses of Class
org.opends.server.api.PasswordValidator
-
Packages that use PasswordValidator Package Description org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase.org.opends.server.extensions Contains various implementations of Directory Server APIs that are not appropriate for other packages. -
-
Uses of PasswordValidator in org.opends.server.core
Methods in org.opends.server.core that return PasswordValidator Modifier and Type Method Description PasswordValidator<? extends PasswordValidatorCfg>DirectoryServer. getPasswordValidator(Dn configEntryDN)PasswordValidator<? extends PasswordValidatorCfg>ServerContext. getPasswordValidator(Dn configEntryDN)Retrieves the password validator registered with the provided configuration entry DN.Methods in org.opends.server.core that return types with arguments of type PasswordValidator Modifier and Type Method Description abstract Collection<PasswordValidator<?>>PasswordPolicy. getPasswordValidators()Retrieves the set of password validators for this password policy.Collection<PasswordValidator<?>>SubentryPasswordPolicy. getPasswordValidators()Methods in org.opends.server.core with parameters of type PasswordValidator Modifier and Type Method Description booleanPasswordPolicy. passwordIsAcceptable(ByteString newPassword, Set<ByteString> currentPasswords, Operation operation, Entry userEntry, LocalizableMessageBuilder invalidReason, PasswordValidator<?> passwordInHistoryValidator)Indicates whether the provided password appears to be acceptable according to the password validators, and adds aPasswordQualityAdviceResponseControlto the operation's response if requested.voidDirectoryServer. registerPasswordValidator(Dn configEntryDN, PasswordValidator<? extends PasswordValidatorCfg> validator)voidServerContext. registerPasswordValidator(Dn configEntryDN, PasswordValidator<? extends PasswordValidatorCfg> validator)Registers the provided password validator for use with the Directory Server. -
Uses of PasswordValidator in org.opends.server.extensions
Subclasses of PasswordValidator in org.opends.server.extensions Modifier and Type Class Description classAttributeValuePasswordValidatorThis class provides an OpenDS password validator that may be used to ensure that proposed passwords are not contained in another attribute in the user's entry.classCharacterSetPasswordValidatorThis class provides an OpenDJ password validator that may be used to ensure that proposed passwords contain at least a specified number of characters from one or more user-defined character sets.classDictionaryPasswordValidatorThis class provides an OpenDS password validator that may be used to ensure that proposed passwords are not contained in a specified dictionary.classLengthBasedPasswordValidatorThis class provides a password validator that can ensure that the provided password meets minimum and/or maximum length requirements.classRepeatedCharactersPasswordValidatorThis class provides an OpenDS password validator that may be used to ensure that proposed passwords are not allowed to have the same character appear several times consecutively.classSimilarityBasedPasswordValidatorThis class provides a password validator that can ensure that the provided password meets minimum similarity requirements.classUniqueCharactersPasswordValidatorThis class provides an OpenDS password validator that may be used to ensure that proposed passwords contain at least a specified number of different characters.
-