Enum PasswordPolicyResponseStates
- java.lang.Object
-
- java.lang.Enum<PasswordPolicyResponseStates>
-
- org.apache.directory.api.ldap.extras.controls.ppolicy_impl.PasswordPolicyResponseStates
-
- All Implemented Interfaces:
Serializable,Comparable<PasswordPolicyResponseStates>,States
public enum PasswordPolicyResponseStates extends Enum<PasswordPolicyResponseStates> implements States
Various states used inPasswordPolicyResponseGrammar.- Author:
- Apache Directory Project
-
-
Enum Constant Summary
Enum Constants Enum Constant Description END_STATEend statePPOLICY_RESP_ERROR_TAG_STATEerror [1] ENUMERATED transitionPPOLICY_RESP_GRACE_AUTHNS_REMAINING_STATEgraceAuthNsRemaining [1] INTEGER (0 ..PPOLICY_RESP_SEQ_STATEPasswordPolicyResponseValue ::= SEQUENCE transitionPPOLICY_RESP_TIME_BEFORE_EXPIRATION_STATEtimeBeforeExpiration [0] INTEGER (0 ..PPOLICY_RESP_WARNING_TAG_STATEwarning [0] CHOICE transitionSTART_STATEInitial state
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetGrammarName()Get the grammar namePasswordPolicyResponseStatesgetStartState()StringgetState(int state)Get the string representing the statebooleanisEndState()static PasswordPolicyResponseStatesvalueOf(String name)Returns the enum constant of this type with the specified name.static PasswordPolicyResponseStates[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
START_STATE
public static final PasswordPolicyResponseStates START_STATE
Initial state
-
PPOLICY_RESP_SEQ_STATE
public static final PasswordPolicyResponseStates PPOLICY_RESP_SEQ_STATE
PasswordPolicyResponseValue ::= SEQUENCE transition
-
PPOLICY_RESP_WARNING_TAG_STATE
public static final PasswordPolicyResponseStates PPOLICY_RESP_WARNING_TAG_STATE
warning [0] CHOICE transition
-
PPOLICY_RESP_TIME_BEFORE_EXPIRATION_STATE
public static final PasswordPolicyResponseStates PPOLICY_RESP_TIME_BEFORE_EXPIRATION_STATE
timeBeforeExpiration [0] INTEGER (0 .. maxInt) transition
-
PPOLICY_RESP_GRACE_AUTHNS_REMAINING_STATE
public static final PasswordPolicyResponseStates PPOLICY_RESP_GRACE_AUTHNS_REMAINING_STATE
graceAuthNsRemaining [1] INTEGER (0 .. maxInt) } OPTIONAL transition
-
PPOLICY_RESP_ERROR_TAG_STATE
public static final PasswordPolicyResponseStates PPOLICY_RESP_ERROR_TAG_STATE
error [1] ENUMERATED transition
-
END_STATE
public static final PasswordPolicyResponseStates END_STATE
end state
-
-
Method Detail
-
values
public static PasswordPolicyResponseStates[] 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 (PasswordPolicyResponseStates c : PasswordPolicyResponseStates.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PasswordPolicyResponseStates 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
-
getGrammarName
public String getGrammarName()
Get the grammar name- Returns:
- The grammar name
-
getState
public String getState(int state)
Get the string representing the state- Parameters:
state- The state number- Returns:
- The String representing the state
-
isEndState
public boolean isEndState()
- Specified by:
isEndStatein interfaceStates- Returns:
- True if this is the END_STATE
-
getStartState
public PasswordPolicyResponseStates getStartState()
- Specified by:
getStartStatein interfaceStates- Returns:
- The START_STATE of the enum
-
-