Package com.strongdm.api
Class ManagedSecretPasswordPolicy
java.lang.Object
com.strongdm.api.ManagedSecretPasswordPolicy
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanIf set to true allows for consecutive characters to repeat itselfCharacters to exclude when generating passwordbooleanIf set to true do not include upper case letters when generating passwordintPassword lengthintNumbers of digits to use when generating passwordintNumber of symbols to use when generating passwordvoidsetAllowRepeat(boolean in) If set to true allows for consecutive characters to repeat itselfvoidCharacters to exclude when generating passwordvoidsetExcludeUpperCase(boolean in) If set to true do not include upper case letters when generating passwordvoidsetLength(int in) Password lengthvoidsetNumDigits(int in) Numbers of digits to use when generating passwordvoidsetNumSymbols(int in) Number of symbols to use when generating password
-
Constructor Details
-
ManagedSecretPasswordPolicy
public ManagedSecretPasswordPolicy()
-
-
Method Details
-
getAllowRepeat
public boolean getAllowRepeat()If set to true allows for consecutive characters to repeat itself -
setAllowRepeat
public void setAllowRepeat(boolean in) If set to true allows for consecutive characters to repeat itself -
getExcludeCharacters
Characters to exclude when generating password -
setExcludeCharacters
Characters to exclude when generating password -
getExcludeUpperCase
public boolean getExcludeUpperCase()If set to true do not include upper case letters when generating password -
setExcludeUpperCase
public void setExcludeUpperCase(boolean in) If set to true do not include upper case letters when generating password -
getLength
public int getLength()Password length -
setLength
public void setLength(int in) Password length -
getNumDigits
public int getNumDigits()Numbers of digits to use when generating password -
setNumDigits
public void setNumDigits(int in) Numbers of digits to use when generating password -
getNumSymbols
public int getNumSymbols()Number of symbols to use when generating password -
setNumSymbols
public void setNumSymbols(int in) Number of symbols to use when generating password
-