Uses of Interface
org.forgerock.openam.utils.CodeGeneratorSource
Package
Description
This package contains general utilities for use throughout the OpenAM codebase.
-
Uses of CodeGeneratorSource in org.forgerock.openam.utils
Modifier and TypeMethodDescriptionRecoveryCodeGenerator.generateCode
(CodeGeneratorSource alphabet, int length) Generates a code of the supplied length, using the provided alphabet as its source of random characters.RecoveryCodeGenerator.generateCodes
(int numCodes, CodeGeneratorSource alphabet, boolean allowDuplicates) Generate a set of codes using the provided alphabet of the default length.RecoveryCodeGenerator.generateCodes
(int numCodes, CodeGeneratorSource alphabet, int length, boolean allowDuplicates) Generate a set of codes using the provided alphabet of the provided length.RecoveryCodeGenerator.generateDelimitedCode
(CodeGeneratorSource alphabet, char delimiter, int... groups) Generates a code of the supplied length, using the provided alphabet as its source of random characters.String[]
RecoveryCodeGenerator.generateDelimitedCodes
(int numCodes, CodeGeneratorSource alphabet, char delimiter, boolean allowDuplicates, int... groups) Generates a code of the supplied length, using the provided alphabet as its source of random characters.String[]
RecoveryCodeGenerator.generateDelimitedCodesWithSpecifics
(int numCodes, CodeGeneratorSource alphabet, char delimiter, Map<Integer, Character> specifics, boolean allowDuplicates, int... groups) Generates a code of the supplied length, using the provided alphabet as its source of random characters.RecoveryCodeGenerator.generateDelimitedCodeWithSpecifics
(CodeGeneratorSource alphabet, char delimiter, Map<Integer, Character> specifics, int... groups) Generates a code of the supplied length, using the provided alphabet as its source of random characters.