Enum Class EPPLoginSecPolicyEvent.EventType
java.lang.Object
java.lang.Enum<EPPLoginSecPolicyEvent.EventType>
com.verisign.epp.codec.loginsecpolicy.v04.EPPLoginSecPolicyEvent.EventType
- All Implemented Interfaces:
Serializable,Cloneable,Comparable<EPPLoginSecPolicyEvent.EventType>,Constable
- Enclosing class:
EPPLoginSecPolicyEvent
public static enum EPPLoginSecPolicyEvent.EventType
extends Enum<EPPLoginSecPolicyEvent.EventType>
implements Serializable, Cloneable
Possible list of security event types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionClient certificate expiry event type.Insecure or deprecated TLS cipher suite event type.Custom event type.New password does not meet server password complexity requirements event type.Password expiry event type.Login security statistical warning event type.Insecure or deprecated TLS protocol event type. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static EPPLoginSecPolicyEvent.EventType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
password
Password expiry event type. -
certificate
Client certificate expiry event type. -
cipher
Insecure or deprecated TLS cipher suite event type. -
tlsProtocol
Insecure or deprecated TLS protocol event type. -
newPW
New password does not meet server password complexity requirements event type. -
stat
Login security statistical warning event type. -
custom
Custom event type.
-
-
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
-