Package com.strongdm.api
Class SecretEnginePasswordPolicy
java.lang.Object
com.strongdm.api.SecretEnginePasswordPolicy
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
If set to true allows for consecutive characters to repeat itselfCharacters to exclude when generating passwordboolean
If set to true do not include upper case letters when generating passwordint
Password length.int
Numbers of digits to use when generating passwordint
Number of symbols to use when generating passwordvoid
setAllowRepeat
(boolean in) If set to true allows for consecutive characters to repeat itselfvoid
Characters to exclude when generating passwordvoid
setExcludeUpperCase
(boolean in) If set to true do not include upper case letters when generating passwordvoid
setLength
(int in) Password length.void
setNumDigits
(int in) Numbers of digits to use when generating passwordvoid
setNumSymbols
(int in) Number of symbols to use when generating password
-
Constructor Details
-
SecretEnginePasswordPolicy
public SecretEnginePasswordPolicy()
-
-
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
-