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 boolean
PasswordPolicy. 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 aPasswordQualityAdviceResponseControl
to the operation's response if requested.void
DirectoryServer. registerPasswordValidator(Dn configEntryDN, PasswordValidator<? extends PasswordValidatorCfg> validator)
void
ServerContext. 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 class
AttributeValuePasswordValidator
This 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.class
CharacterSetPasswordValidator
This 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.class
DictionaryPasswordValidator
This class provides an OpenDS password validator that may be used to ensure that proposed passwords are not contained in a specified dictionary.class
LengthBasedPasswordValidator
This class provides a password validator that can ensure that the provided password meets minimum and/or maximum length requirements.class
RepeatedCharactersPasswordValidator
This 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.class
SimilarityBasedPasswordValidator
This class provides a password validator that can ensure that the provided password meets minimum similarity requirements.class
UniqueCharactersPasswordValidator
This class provides an OpenDS password validator that may be used to ensure that proposed passwords contain at least a specified number of different characters.
-