Enum Class EPPLoginSecPolicyEvent.EventErrorAction
java.lang.Object
java.lang.Enum<EPPLoginSecPolicyEvent.EventErrorAction>
com.verisign.epp.codec.loginsecpolicy.v04.EPPLoginSecPolicyEvent.EventErrorAction
- All Implemented Interfaces:
Serializable,Cloneable,Comparable<EPPLoginSecPolicyEvent.EventErrorAction>,Constable
- Enclosing class:
EPPLoginSecPolicyEvent
public static enum EPPLoginSecPolicyEvent.EventErrorAction
extends Enum<EPPLoginSecPolicyEvent.EventErrorAction>
implements Serializable, Cloneable
Possible list of event error action types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
connect
The client connection will fail. For example, when the client certificate expires, the TLS handshake will fail. -
login
The client login will fail. For example, when the new password does not meet the server password complexity requirements or when the password expires, the login will fail. -
none
There is no predefined failure action. For example, when the password expires, the server will not fail the login.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-