Class DefaultPasswordRuleConf
- java.lang.Object
-
- org.apache.syncope.common.lib.policy.AbstractPasswordRuleConf
-
- org.apache.syncope.common.lib.policy.DefaultPasswordRuleConf
-
- All Implemented Interfaces:
Serializable
,BaseBean
,PasswordRuleConf
,RuleConf
public class DefaultPasswordRuleConf extends AbstractPasswordRuleConf
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DefaultPasswordRuleConf()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAlphabetical()
int
getDigit()
List<Character>
getIllegalChars()
int
getLowercase()
int
getMaxLength()
int
getMinLength()
int
getRepeatSame()
List<String>
getSchemasNotPermitted()
int
getSpecial()
List<Character>
getSpecialChars()
int
getUppercase()
List<String>
getWordsNotPermitted()
boolean
isUsernameAllowed()
void
setAlphabetical(int alphabetical)
void
setDigit(int digit)
void
setLowercase(int lowercase)
void
setMaxLength(int maxLength)
void
setMinLength(int minLength)
void
setRepeatSame(int repeatSame)
void
setSpecial(int special)
void
setUppercase(int uppercase)
void
setUsernameAllowed(boolean usernameAllowed)
-
Methods inherited from class org.apache.syncope.common.lib.policy.AbstractPasswordRuleConf
getName, setName
-
-
-
-
Method Detail
-
getMaxLength
public int getMaxLength()
-
setMaxLength
public void setMaxLength(int maxLength)
-
getMinLength
public int getMinLength()
-
setMinLength
public void setMinLength(int minLength)
-
getAlphabetical
public int getAlphabetical()
-
setAlphabetical
public void setAlphabetical(int alphabetical)
-
getUppercase
public int getUppercase()
-
setUppercase
public void setUppercase(int uppercase)
-
getLowercase
public int getLowercase()
-
setLowercase
public void setLowercase(int lowercase)
-
getDigit
public int getDigit()
-
setDigit
public void setDigit(int digit)
-
getSpecial
public int getSpecial()
-
setSpecial
public void setSpecial(int special)
-
getRepeatSame
public int getRepeatSame()
-
setRepeatSame
public void setRepeatSame(int repeatSame)
-
isUsernameAllowed
public boolean isUsernameAllowed()
-
setUsernameAllowed
public void setUsernameAllowed(boolean usernameAllowed)
-
-