public abstract class AccountPolicyEntity
extends java.lang.Object
AccountPolicyEntity abstract class wraps various properties related to the password,
verification, and OTP requirements for a user account.| Modifier and Type | Class and Description |
|---|---|
static class |
AccountPolicyEntity.Builder |
| Constructor and Description |
|---|
AccountPolicyEntity() |
| Modifier and Type | Method and Description |
|---|---|
abstract java.util.Map<java.lang.String,java.lang.Object> |
appCodeConfigMap()
Returns a
Map of the app code configurations. |
static AccountPolicyEntity.Builder |
builder()
The
AccountPolicyEntity.Builder abstract class allows the user to create and return a
AccountPolicyEntity object. |
abstract java.util.Map<java.lang.String,java.lang.Object> |
otpConfigMap()
Returns a
Map of the OTP configurations. |
abstract PasswordPolicyEntity |
passwordPolicyEntity()
Returns a
PasswordPolicyEntity object, which wraps various properties related to the
password requirements for a user account. |
abstract java.util.Map<java.lang.String,java.lang.Object> |
verificationPolicyMap()
Returns a
Map of the verification policies. |
@Nullable public abstract java.util.Map<java.lang.String,java.lang.Object> appCodeConfigMap()
Map of the app code configurations.Map of the app code configurations.@Nullable public abstract java.util.Map<java.lang.String,java.lang.Object> otpConfigMap()
Map of the OTP configurations.Map of the OTP configurations.public abstract PasswordPolicyEntity passwordPolicyEntity()
PasswordPolicyEntity object, which wraps various properties related to the
password requirements for a user account.PasswordPolicyEntity object.@Nullable public abstract java.util.Map<java.lang.String,java.lang.Object> verificationPolicyMap()
Map of the verification policies.Map of the verification policies.public static AccountPolicyEntity.Builder builder()
AccountPolicyEntity.Builder abstract class allows the user to create and return a
AccountPolicyEntity object. For example,