Class DefaultPasswordPolicyImpl
- java.lang.Object
-
- org.camunda.bpm.engine.impl.identity.DefaultPasswordPolicyImpl
-
- All Implemented Interfaces:
PasswordPolicy
public class DefaultPasswordPolicyImpl extends Object implements PasswordPolicy
- Author:
- Miklas Boskamp
-
-
Field Summary
Fields Modifier and Type Field Description static int
MIN_DIGIT
static int
MIN_LENGTH
static int
MIN_LOWERCASE
static int
MIN_SPECIAL
static int
MIN_UPPERCASE
protected static String
PLACEHOLDER_PREFIX
protected List<PasswordPolicyRule>
rules
-
Constructor Summary
Constructors Constructor Description DefaultPasswordPolicyImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PasswordPolicyRule>
getRules()
A list of rules that must be matched by user passwords.
-
-
-
Field Detail
-
PLACEHOLDER_PREFIX
protected static final String PLACEHOLDER_PREFIX
- See Also:
- Constant Field Values
-
MIN_LENGTH
public static final int MIN_LENGTH
- See Also:
- Constant Field Values
-
MIN_LOWERCASE
public static final int MIN_LOWERCASE
- See Also:
- Constant Field Values
-
MIN_UPPERCASE
public static final int MIN_UPPERCASE
- See Also:
- Constant Field Values
-
MIN_DIGIT
public static final int MIN_DIGIT
- See Also:
- Constant Field Values
-
MIN_SPECIAL
public static final int MIN_SPECIAL
- See Also:
- Constant Field Values
-
rules
protected final List<PasswordPolicyRule> rules
-
-
Method Detail
-
getRules
public List<PasswordPolicyRule> getRules()
Description copied from interface:PasswordPolicy
A list of rules that must be matched by user passwords.- Specified by:
getRules
in interfacePasswordPolicy
- Returns:
- the list
-
-