Enum Class EventType

java.lang.Object
java.lang.Enum<EventType>
com.verisign.epp.codec.loginsec.v1_0.EventType
All Implemented Interfaces:
Serializable, Comparable<EventType>, Constable

public enum EventType extends Enum<EventType>
Event types, which include the following possible values:
  • PASSWORD - Password expiry event type.
  • CERTIFICATE - Client certificate expiry event type.
  • CIPHER - Insecure or deprecated TLS cipher suite event type.
  • TLS_PROTOCOL - Insecure or deprecated TLS protocol event type.
  • NEW_PW - New password does not meet server password complexity requirements event type.
  • STAT - Login security statistical warning event type.
  • CUSTOM - Custom event type attribute like the "customName" attribute.
  • Enum Constant Details

    • PASSWORD

      public static final EventType PASSWORD
    • CERTIFICATE

      public static final EventType CERTIFICATE
    • CIPHER

      public static final EventType CIPHER
    • TLS_PROTOCOL

      public static final EventType TLS_PROTOCOL
    • NEW_PW

      public static final EventType NEW_PW
    • STAT

      public static final EventType STAT
    • CUSTOM

      public static final EventType CUSTOM
  • Method Details

    • values

      public static EventType[] 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

      public static EventType valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • getEventType

      public static EventType getEventType(String aString)
      Get the event type enumerated value given the matching string.
      Parameters:
      aString - EventType enumerated string to convert to an enumerated EventType instance.
      Returns:
      Enumerated EventType value matching the String.
      Throws:
      InvalidParameterException - If aString does not match an enumerated EventType string value.
    • toString

      public String toString()
      Convert the enumerated EventType value to a String.
      Overrides:
      toString in class Enum<EventType>