public enum EventType extends java.lang.Enum<EventType>
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 and Description |
---|
CERTIFICATE |
CIPHER |
CUSTOM |
NEW_PW |
PASSWORD |
STAT |
TLS_PROTOCOL |
Modifier and Type | Method and Description |
---|---|
static EventType |
getEventType(java.lang.String aString)
Get the event type enumerated value given the matching string.
|
java.lang.String |
toString()
Convert the enumerated
EventType value to a
String . |
static EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventType PASSWORD
public static final EventType CERTIFICATE
public static final EventType CIPHER
public static final EventType TLS_PROTOCOL
public static final EventType NEW_PW
public static final EventType STAT
public static final EventType CUSTOM
public static EventType[] values()
for (EventType c : EventType.values()) System.out.println(c);
public static EventType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static EventType getEventType(java.lang.String aString)
aString
- EventType
enumerated string to convert to an
enumerated EventType
instance.EventType
value matching the
String
.java.security.InvalidParameterException
- If aString
does not match an enumerated
EventType
string value.public java.lang.String toString()
EventType
value to a
String
.toString
in class java.lang.Enum<EventType>
Copyright © VeriSign Inc. All Rights Reserved.