Uses of Interface
org.jboss.as.domain.management.security.password.PasswordRestriction
-
Packages that use PasswordRestriction Package Description org.jboss.as.domain.management.security.password org.jboss.as.domain.management.security.password.simple -
-
Uses of PasswordRestriction in org.jboss.as.domain.management.security.password
Classes in org.jboss.as.domain.management.security.password that implement PasswordRestriction Modifier and Type Class Description classCompoundRestrictionAPasswordValidationwhich wraps multiple other restrictions.classLengthRestrictionAPasswordRestrictionto check the length of the password.classRegexRestrictionclassUsernamePasswordMatchAPasswordRestrictionto verify that the username and password and not equal.classValueRestrictionAPasswordValidationto verify that a password is not in a list of banned passwords.Fields in org.jboss.as.domain.management.security.password with type parameters of type PasswordRestriction Modifier and Type Field Description List<PasswordRestriction>PasswordCheckUtil. passwordValuesRestrictionsMethods in org.jboss.as.domain.management.security.password that return PasswordRestriction Modifier and Type Method Description PasswordRestrictionPasswordCheckUtil. createAlphaRestriction(int minAlpha)PasswordRestrictionPasswordCheckUtil. createDigitRestriction(int minDigit)PasswordRestrictionPasswordCheckUtil. createSymbolRestriction(int minSymbol)Methods in org.jboss.as.domain.management.security.password that return types with arguments of type PasswordRestriction Modifier and Type Method Description List<PasswordRestriction>PasswordStrengthCheckResult. getPassedRestrictions()List of restrictions that password did met.List<PasswordRestriction>PasswordCheckUtil. getPasswordRestrictions()List<PasswordRestriction>CompoundRestriction. getRestrictions()Method parameters in org.jboss.as.domain.management.security.password with type arguments of type PasswordRestriction Modifier and Type Method Description PasswordStrengthCheckResultPasswordStrengthChecker. check(String userName, String password, List<PasswordRestriction> restictions)Determines password strength. -
Uses of PasswordRestriction in org.jboss.as.domain.management.security.password.simple
Methods in org.jboss.as.domain.management.security.password.simple that return PasswordRestriction Modifier and Type Method Description static PasswordRestrictionSimplePasswordStrengthChecker. getRestrictionAlpha(int minAlpha)static PasswordRestrictionSimplePasswordStrengthChecker. getRestrictionDigit(int minDigit)static PasswordRestrictionSimplePasswordStrengthChecker. getRestrictionSymbol(int minSymbol)Methods in org.jboss.as.domain.management.security.password.simple that return types with arguments of type PasswordRestriction Modifier and Type Method Description List<PasswordRestriction>SimplePasswordStrengthCheckResult. getPassedRestrictions()Method parameters in org.jboss.as.domain.management.security.password.simple with type arguments of type PasswordRestriction Modifier and Type Method Description PasswordStrengthCheckResultSimplePasswordStrengthChecker. check(String userName, String password, List<PasswordRestriction> restictions)Constructor parameters in org.jboss.as.domain.management.security.password.simple with type arguments of type PasswordRestriction Constructor Description SimplePasswordStrengthChecker(List<PasswordRestriction> initRestrictions, Dictionary dictionary, Keyboard keyboard)
-