Uses of Class
org.opends.server.api.PasswordGenerator
-
Packages that use PasswordGenerator 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 PasswordGenerator in org.opends.server.core
Methods in org.opends.server.core that return PasswordGenerator Modifier and Type Method Description PasswordGenerator<?>
DirectoryServer. getPasswordGenerator(Dn configEntryDN)
abstract PasswordGenerator<?>
PasswordPolicy. getPasswordGenerator()
Retrieves the password generator that will be used with this password policy.PasswordGenerator<?>
ServerContext. getPasswordGenerator(Dn configEntryDN)
Retrieves the password generator registered with the provided configuration entry DN.PasswordGenerator<?>
SubentryPasswordPolicy. getPasswordGenerator()
Methods in org.opends.server.core with parameters of type PasswordGenerator Modifier and Type Method Description void
DirectoryServer. registerPasswordGenerator(Dn configEntryDN, PasswordGenerator<?> generator)
void
ServerContext. registerPasswordGenerator(Dn configEntryDN, PasswordGenerator<?> generator)
Registers the provided password generator for use with the Directory Server. -
Uses of PasswordGenerator in org.opends.server.extensions
Subclasses of PasswordGenerator in org.opends.server.extensions Modifier and Type Class Description class
RandomPasswordGenerator
This class provides an implementation of a Directory Server password generator that will create random passwords based on fixed-length strings built from one or more character sets.
-