public class PasswordPolicyType
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
The password policy type.
Modifier and Type | Field and Description |
---|---|
private java.lang.Integer |
minimumLength
The minimum length of the password policy that you have set.
|
private java.lang.Boolean |
requireLowercase
In the password policy that you have set, refers to whether you have
required users to use at least one lowercase letter in their password.
|
private java.lang.Boolean |
requireNumbers
In the password policy that you have set, refers to whether you have
required users to use at least one number in their password.
|
private java.lang.Boolean |
requireSymbols
In the password policy that you have set, refers to whether you have
required users to use at least one symbol in their password.
|
private java.lang.Boolean |
requireUppercase
In the password policy that you have set, refers to whether you have
required users to use at least one uppercase letter in their password.
|
Constructor and Description |
---|
PasswordPolicyType() |
Modifier and Type | Method and Description |
---|---|
PasswordPolicyType |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.Integer |
getMinimumLength()
The minimum length of the password policy that you have set.
|
java.lang.Boolean |
getRequireLowercase()
In the password policy that you have set, refers to whether you have
required users to use at least one lowercase letter in their password.
|
java.lang.Boolean |
getRequireNumbers()
In the password policy that you have set, refers to whether you have
required users to use at least one number in their password.
|
java.lang.Boolean |
getRequireSymbols()
In the password policy that you have set, refers to whether you have
required users to use at least one symbol in their password.
|
java.lang.Boolean |
getRequireUppercase()
In the password policy that you have set, refers to whether you have
required users to use at least one uppercase letter in their password.
|
int |
hashCode() |
java.lang.Boolean |
isRequireLowercase()
In the password policy that you have set, refers to whether you have
required users to use at least one lowercase letter in their password.
|
java.lang.Boolean |
isRequireNumbers()
In the password policy that you have set, refers to whether you have
required users to use at least one number in their password.
|
java.lang.Boolean |
isRequireSymbols()
In the password policy that you have set, refers to whether you have
required users to use at least one symbol in their password.
|
java.lang.Boolean |
isRequireUppercase()
In the password policy that you have set, refers to whether you have
required users to use at least one uppercase letter in their password.
|
void |
setMinimumLength(java.lang.Integer minimumLength)
The minimum length of the password policy that you have set.
|
void |
setRequireLowercase(java.lang.Boolean requireLowercase)
In the password policy that you have set, refers to whether you have
required users to use at least one lowercase letter in their password.
|
void |
setRequireNumbers(java.lang.Boolean requireNumbers)
In the password policy that you have set, refers to whether you have
required users to use at least one number in their password.
|
void |
setRequireSymbols(java.lang.Boolean requireSymbols)
In the password policy that you have set, refers to whether you have
required users to use at least one symbol in their password.
|
void |
setRequireUppercase(java.lang.Boolean requireUppercase)
In the password policy that you have set, refers to whether you have
required users to use at least one uppercase letter in their password.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
PasswordPolicyType |
withMinimumLength(java.lang.Integer minimumLength)
The minimum length of the password policy that you have set.
|
PasswordPolicyType |
withRequireLowercase(java.lang.Boolean requireLowercase)
In the password policy that you have set, refers to whether you have
required users to use at least one lowercase letter in their password.
|
PasswordPolicyType |
withRequireNumbers(java.lang.Boolean requireNumbers)
In the password policy that you have set, refers to whether you have
required users to use at least one number in their password.
|
PasswordPolicyType |
withRequireSymbols(java.lang.Boolean requireSymbols)
In the password policy that you have set, refers to whether you have
required users to use at least one symbol in their password.
|
PasswordPolicyType |
withRequireUppercase(java.lang.Boolean requireUppercase)
In the password policy that you have set, refers to whether you have
required users to use at least one uppercase letter in their password.
|
private java.lang.Integer minimumLength
The minimum length of the password policy that you have set. Cannot be less than 6.
private java.lang.Boolean requireUppercase
In the password policy that you have set, refers to whether you have required users to use at least one uppercase letter in their password.
private java.lang.Boolean requireLowercase
In the password policy that you have set, refers to whether you have required users to use at least one lowercase letter in their password.
private java.lang.Boolean requireNumbers
In the password policy that you have set, refers to whether you have required users to use at least one number in their password.
private java.lang.Boolean requireSymbols
In the password policy that you have set, refers to whether you have required users to use at least one symbol in their password.
public void setMinimumLength(java.lang.Integer minimumLength)
The minimum length of the password policy that you have set. Cannot be less than 6.
minimumLength
- The minimum length of the password policy that you have set.
Cannot be less than 6.public java.lang.Integer getMinimumLength()
The minimum length of the password policy that you have set. Cannot be less than 6.
public PasswordPolicyType withMinimumLength(java.lang.Integer minimumLength)
The minimum length of the password policy that you have set. Cannot be less than 6.
minimumLength
- The minimum length of the password policy that you have set.
Cannot be less than 6.public void setRequireUppercase(java.lang.Boolean requireUppercase)
In the password policy that you have set, refers to whether you have required users to use at least one uppercase letter in their password.
requireUppercase
- In the password policy that you have set, refers to whether you
have required users to use at least one uppercase letter in their
password.public java.lang.Boolean getRequireUppercase()
In the password policy that you have set, refers to whether you have required users to use at least one uppercase letter in their password.
public PasswordPolicyType withRequireUppercase(java.lang.Boolean requireUppercase)
In the password policy that you have set, refers to whether you have required users to use at least one uppercase letter in their password.
requireUppercase
- In the password policy that you have set, refers to whether you
have required users to use at least one uppercase letter in their
password.public java.lang.Boolean isRequireUppercase()
In the password policy that you have set, refers to whether you have required users to use at least one uppercase letter in their password.
public void setRequireLowercase(java.lang.Boolean requireLowercase)
In the password policy that you have set, refers to whether you have required users to use at least one lowercase letter in their password.
requireLowercase
- In the password policy that you have set, refers to whether you
have required users to use at least one lowercase letter in their
password.public java.lang.Boolean getRequireLowercase()
In the password policy that you have set, refers to whether you have required users to use at least one lowercase letter in their password.
public PasswordPolicyType withRequireLowercase(java.lang.Boolean requireLowercase)
In the password policy that you have set, refers to whether you have required users to use at least one lowercase letter in their password.
requireLowercase
- In the password policy that you have set, refers to whether you
have required users to use at least one lowercase letter in their
password.public java.lang.Boolean isRequireLowercase()
In the password policy that you have set, refers to whether you have required users to use at least one lowercase letter in their password.
public void setRequireNumbers(java.lang.Boolean requireNumbers)
In the password policy that you have set, refers to whether you have required users to use at least one number in their password.
requireNumbers
- In the password policy that you have set, refers to whether you
have required users to use at least one number in their password.public java.lang.Boolean getRequireNumbers()
In the password policy that you have set, refers to whether you have required users to use at least one number in their password.
public PasswordPolicyType withRequireNumbers(java.lang.Boolean requireNumbers)
In the password policy that you have set, refers to whether you have required users to use at least one number in their password.
requireNumbers
- In the password policy that you have set, refers to whether you
have required users to use at least one number in their password.public java.lang.Boolean isRequireNumbers()
In the password policy that you have set, refers to whether you have required users to use at least one number in their password.
public void setRequireSymbols(java.lang.Boolean requireSymbols)
In the password policy that you have set, refers to whether you have required users to use at least one symbol in their password.
requireSymbols
- In the password policy that you have set, refers to whether you
have required users to use at least one symbol in their password.public java.lang.Boolean getRequireSymbols()
In the password policy that you have set, refers to whether you have required users to use at least one symbol in their password.
public PasswordPolicyType withRequireSymbols(java.lang.Boolean requireSymbols)
In the password policy that you have set, refers to whether you have required users to use at least one symbol in their password.
requireSymbols
- In the password policy that you have set, refers to whether you
have required users to use at least one symbol in their password.public java.lang.Boolean isRequireSymbols()
In the password policy that you have set, refers to whether you have required users to use at least one symbol in their password.
public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public PasswordPolicyType clone()
clone
in class java.lang.Object