com.atlassian.crowd.embedded.api
Enum PasswordScore
java.lang.Object
java.lang.Enum<PasswordScore>
com.atlassian.crowd.embedded.api.PasswordScore
- All Implemented Interfaces:
- Serializable, Comparable<PasswordScore>
public enum PasswordScore
- extends Enum<PasswordScore>
A rating of a password based on estimated difficulty of cracking by some
PasswordScoreService.
UNKNOWN
public static final PasswordScore UNKNOWN
WEAK
public static final PasswordScore WEAK
FAIR
public static final PasswordScore FAIR
GOOD
public static final PasswordScore GOOD
STRONG
public static final PasswordScore STRONG
VERY_STRONG
public static final PasswordScore VERY_STRONG
values
public static PasswordScore[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (PasswordScore c : PasswordScore.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static PasswordScore valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
fromRanking
public static PasswordScore fromRanking(long ranking)
isAtLeast
public boolean isAtLeast(PasswordScore minimumScore)
- Uses an internal ranking to compare the scores and determine if it is 'just as strong'.
It will return true if this score is greater than or equal to the parameter.
Note that this means UNKNOWN is at least as strong as UNKNOWN.
- Parameters:
minimumScore - the score to compare to
- Returns:
- If this score is at least as strong as the score being passed in
getRanking
public long getRanking()
Copyright © 2016 Atlassian. All Rights Reserved.