Package org.openiam.idm.srvc.policy.dto
Enum PolicyAttributeNameEnum
- java.lang.Object
-
- java.lang.Enum<PolicyAttributeNameEnum>
-
- org.openiam.idm.srvc.policy.dto.PolicyAttributeNameEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<PolicyAttributeNameEnum>
public enum PolicyAttributeNameEnum extends Enum<PolicyAttributeNameEnum>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getPolicyName()
static PolicyAttributeNameEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static PolicyAttributeNameEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PWD_HIST_VER
public static final PolicyAttributeNameEnum PWD_HIST_VER
-
PWD_EXPIRATION
public static final PolicyAttributeNameEnum PWD_EXPIRATION
-
PWD_LEN
public static final PolicyAttributeNameEnum PWD_LEN
-
NUMERIC_CHARS
public static final PolicyAttributeNameEnum NUMERIC_CHARS
-
UPPERCASE_CHARS
public static final PolicyAttributeNameEnum UPPERCASE_CHARS
-
LOWERCASE_CHARS
public static final PolicyAttributeNameEnum LOWERCASE_CHARS
-
NON_ALPHA_CHARS
public static final PolicyAttributeNameEnum NON_ALPHA_CHARS
-
ALPHA_CHARS
public static final PolicyAttributeNameEnum ALPHA_CHARS
-
CHNG_PSWD_ON_1ST_LOGIN
public static final PolicyAttributeNameEnum CHNG_PSWD_ON_1ST_LOGIN
-
PWD_LOGIN
public static final PolicyAttributeNameEnum PWD_LOGIN
-
PWD_NAME
public static final PolicyAttributeNameEnum PWD_NAME
-
PWD_EXP_WARN
public static final PolicyAttributeNameEnum PWD_EXP_WARN
-
QUEST_COUNT
public static final PolicyAttributeNameEnum QUEST_COUNT
-
QUEST_LIST
public static final PolicyAttributeNameEnum QUEST_LIST
-
PWD_EXP_GRACE
public static final PolicyAttributeNameEnum PWD_EXP_GRACE
-
CHNG_PSWD_ON_RESET
public static final PolicyAttributeNameEnum CHNG_PSWD_ON_RESET
-
PWD_EQ_PWD
public static final PolicyAttributeNameEnum PWD_EQ_PWD
-
RESET_BY_USER
public static final PolicyAttributeNameEnum RESET_BY_USER
-
PASSWORD_CHANGE_ALLOWED
public static final PolicyAttributeNameEnum PASSWORD_CHANGE_ALLOWED
-
AUTO_UNLOCK_TIME
public static final PolicyAttributeNameEnum AUTO_UNLOCK_TIME
-
LOGIN_MODULE_SEL_POLCY
public static final PolicyAttributeNameEnum LOGIN_MODULE_SEL_POLCY
-
SUCCESS_URL
public static final PolicyAttributeNameEnum SUCCESS_URL
-
FAIL_URL
public static final PolicyAttributeNameEnum FAIL_URL
-
FAILED_AUTH_COUNT
public static final PolicyAttributeNameEnum FAILED_AUTH_COUNT
-
TOKEN_LIFE
public static final PolicyAttributeNameEnum TOKEN_LIFE
-
TOKEN_ISSUER
public static final PolicyAttributeNameEnum TOKEN_ISSUER
-
LOGIN_MOD_TYPE
public static final PolicyAttributeNameEnum LOGIN_MOD_TYPE
-
REJECT_CHARS_IN_PSWD
public static final PolicyAttributeNameEnum REJECT_CHARS_IN_PSWD
-
QUEST_ANSWER_CORRECT
public static final PolicyAttributeNameEnum QUEST_ANSWER_CORRECT
-
HOST_LOGIN
public static final PolicyAttributeNameEnum HOST_LOGIN
-
HOST_PASSWORD
public static final PolicyAttributeNameEnum HOST_PASSWORD
-
BASEDN
public static final PolicyAttributeNameEnum BASEDN
-
PROTOCOL
public static final PolicyAttributeNameEnum PROTOCOL
-
KEY_ATTRIBUTE
public static final PolicyAttributeNameEnum KEY_ATTRIBUTE
-
MANAGED_SYS_ID
public static final PolicyAttributeNameEnum MANAGED_SYS_ID
-
HOST_URL
public static final PolicyAttributeNameEnum HOST_URL
-
MIN_WORDS_PASSPHRASE
public static final PolicyAttributeNameEnum MIN_WORDS_PASSPHRASE
-
REPEAT_SAME_WORD_PASSPHRASE
public static final PolicyAttributeNameEnum REPEAT_SAME_WORD_PASSPHRASE
-
LIMIT_NUM_REPEAT_CHAR
public static final PolicyAttributeNameEnum LIMIT_NUM_REPEAT_CHAR
-
INITIAL_PASSWORD
public static final PolicyAttributeNameEnum INITIAL_PASSWORD
-
REJECT_WORDS_IN_PSWD
public static final PolicyAttributeNameEnum REJECT_WORDS_IN_PSWD
-
CUSTOM_QUEST_COUNT
public static final PolicyAttributeNameEnum CUSTOM_QUEST_COUNT
-
CUSTOM_QUEST_ANSWER_COUNT
public static final PolicyAttributeNameEnum CUSTOM_QUEST_ANSWER_COUNT
-
FAILED_QUESTION_COUNT
public static final PolicyAttributeNameEnum FAILED_QUESTION_COUNT
-
USER_DRIVEN_RESET
public static final PolicyAttributeNameEnum USER_DRIVEN_RESET
-
OTP_SMS_LIFETIME
public static final PolicyAttributeNameEnum OTP_SMS_LIFETIME
-
OTP_MAX_FAIL_ATTEMPT
public static final PolicyAttributeNameEnum OTP_MAX_FAIL_ATTEMPT
-
REQUIRED_HELPDESK_QUESTION
public static final PolicyAttributeNameEnum REQUIRED_HELPDESK_QUESTION
-
FAIL_ATTEMPTS_HELPDESK
public static final PolicyAttributeNameEnum FAIL_ATTEMPTS_HELPDESK
-
NUM_DAYS_FORGET_PWD_TOKEN_VALID
public static final PolicyAttributeNameEnum NUM_DAYS_FORGET_PWD_TOKEN_VALID
-
IDEOGRAPHIC_CHARS
public static final PolicyAttributeNameEnum IDEOGRAPHIC_CHARS
-
AUTHENTICATION_CUSTOM_HANDLER
public static final PolicyAttributeNameEnum AUTHENTICATION_CUSTOM_HANDLER
-
MAX_RETRIES_VALIDATE_PASSWORD
public static final PolicyAttributeNameEnum MAX_RETRIES_VALIDATE_PASSWORD
-
SHOW_GENERIC_MESSAGE_PASS_HIS
public static final PolicyAttributeNameEnum SHOW_GENERIC_MESSAGE_PASS_HIS
-
MIN_ANSWER_LENGTH
public static final PolicyAttributeNameEnum MIN_ANSWER_LENGTH
-
MAX_OTP_RESEND_ALLOWED
public static final PolicyAttributeNameEnum MAX_OTP_RESEND_ALLOWED
-
ACCOUNT_LOCK_TIME
public static final PolicyAttributeNameEnum ACCOUNT_LOCK_TIME
-
PASSWORD_NEVER_EXPIRE
public static final PolicyAttributeNameEnum PASSWORD_NEVER_EXPIRE
-
-
Method Detail
-
values
public static PolicyAttributeNameEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PolicyAttributeNameEnum c : PolicyAttributeNameEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PolicyAttributeNameEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getPolicyName
public String getPolicyName()
-
-