Uses of Interface
org.passay.PasswordData.Reference
-
Packages that use PasswordData.Reference Package Description org.passay -
-
Uses of PasswordData.Reference in org.passay
Classes in org.passay that implement PasswordData.Reference Modifier and Type Class Description static class
PasswordData.AbstractReference
Common password reference implementation.static class
PasswordData.HistoricalReference
Reference to an historical password.static class
PasswordData.SourceReference
Reference to a source password.Methods in org.passay with type parameters of type PasswordData.Reference Modifier and Type Method Description <T extends PasswordData.Reference>
List<T>PasswordData. getPasswordReferences(Class<T> type)
Returns the password references that match the supplied reference type.Methods in org.passay that return types with arguments of type PasswordData.Reference Modifier and Type Method Description List<PasswordData.Reference>
PasswordData. getPasswordReferences()
Returns the password references.Methods in org.passay with parameters of type PasswordData.Reference Modifier and Type Method Description protected boolean
DigestHistoryRule. matches(String password, PasswordData.Reference reference)
Determines whether a digested password matches a reference value.protected boolean
DigestSourceRule. matches(String password, PasswordData.Reference reference)
Determines whether a digested password matches a reference value.protected boolean
HistoryRule. matches(String password, PasswordData.Reference reference)
Determines whether a password matches an historical password.protected boolean
SourceRule. matches(String password, PasswordData.Reference reference)
Determines whether a password matches a source password.void
PasswordData. setPasswordReferences(PasswordData.Reference... r)
Sets the password references.Method parameters in org.passay with type arguments of type PasswordData.Reference Modifier and Type Method Description void
PasswordData. setPasswordReferences(List<PasswordData.Reference> l)
Sets the password references.Constructor parameters in org.passay with type arguments of type PasswordData.Reference Constructor Description PasswordData(String u, String p, List<PasswordData.Reference> r)
Creates a new password data.
-