Class DefaultAccountRuleConf
- java.lang.Object
-
- org.apache.syncope.common.lib.policy.AbstractAccountRuleConf
-
- org.apache.syncope.common.lib.policy.DefaultAccountRuleConf
-
- All Implemented Interfaces:
Serializable
,BaseBean
,AccountRuleConf
,RuleConf
public class DefaultAccountRuleConf extends AbstractAccountRuleConf implements AccountRuleConf
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DefaultAccountRuleConf()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getMaxLength()
int
getMinLength()
String
getPattern()
List<String>
getPrefixesNotPermitted()
List<String>
getSchemasNotPermitted()
List<String>
getSuffixesNotPermitted()
List<String>
getWordsNotPermitted()
boolean
isAllLowerCase()
boolean
isAllUpperCase()
void
setAllLowerCase(boolean allLowerCase)
void
setAllUpperCase(boolean allUpperCase)
void
setMaxLength(int maxLength)
void
setMinLength(int minLength)
void
setPattern(String pattern)
-
Methods inherited from class org.apache.syncope.common.lib.policy.AbstractAccountRuleConf
getName, setName
-
-
-
-
Method Detail
-
isAllLowerCase
public boolean isAllLowerCase()
-
setAllLowerCase
public void setAllLowerCase(boolean allLowerCase)
-
isAllUpperCase
public boolean isAllUpperCase()
-
setAllUpperCase
public void setAllUpperCase(boolean allUpperCase)
-
getMaxLength
public int getMaxLength()
-
setMaxLength
public void setMaxLength(int maxLength)
-
getMinLength
public int getMinLength()
-
setMinLength
public void setMinLength(int minLength)
-
getPattern
public String getPattern()
-
setPattern
public void setPattern(String pattern)
-
-