Package com.securenative.models
Enum EventTypes
- java.lang.Object
-
- java.lang.Enum<EventTypes>
-
- com.securenative.models.EventTypes
-
- All Implemented Interfaces:
Serializable,Comparable<EventTypes>,java.lang.constant.Constable
public enum EventTypes extends Enum<EventTypes>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
-
Enum Constant Summary
-
Method Summary
Modifier and Type Method Description StringgetType()static EventTypesvalueOf(String name)Returns the enum constant of this type with the specified name.static EventTypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AGENT_LOG_IN
public static final EventTypes AGENT_LOG_IN
-
AGENT_LOG_OUT
public static final EventTypes AGENT_LOG_OUT
-
LOG_IN
public static final EventTypes LOG_IN
-
LOG_IN_CHALLENGE
public static final EventTypes LOG_IN_CHALLENGE
-
LOG_IN_FAILURE
public static final EventTypes LOG_IN_FAILURE
-
LOG_OUT
public static final EventTypes LOG_OUT
-
SIGN_UP
public static final EventTypes SIGN_UP
-
AUTH_CHALLENGE
public static final EventTypes AUTH_CHALLENGE
-
AUTH_CHALLENGE_SUCCESS
public static final EventTypes AUTH_CHALLENGE_SUCCESS
-
AUTH_CHALLENGE_FAILURE
public static final EventTypes AUTH_CHALLENGE_FAILURE
-
TWO_FACTOR_DISABLE
public static final EventTypes TWO_FACTOR_DISABLE
-
EMAIL_UPDATE
public static final EventTypes EMAIL_UPDATE
-
PASSWORD_RESET
public static final EventTypes PASSWORD_RESET
-
PASSWORD_RESET_SUCCESS
public static final EventTypes PASSWORD_RESET_SUCCESS
-
PASSWORD_UPDATE
public static final EventTypes PASSWORD_UPDATE
-
PASSWORD_RESET_FAILURE
public static final EventTypes PASSWORD_RESET_FAILURE
-
USER_INVITE
public static final EventTypes USER_INVITE
-
ROLE_UPDATE
public static final EventTypes ROLE_UPDATE
-
PROFILE_UPDATE
public static final EventTypes PROFILE_UPDATE
-
PAGE_VIEW
public static final EventTypes PAGE_VIEW
-
VERIFY
public static final EventTypes VERIFY
-
SDK
public static final EventTypes SDK
-
ERROR
public static final EventTypes ERROR
-
REQUEST
public static final EventTypes REQUEST
-
CONFIG
public static final EventTypes CONFIG
-
ATTACK
public static final EventTypes ATTACK
-
METRIC
public static final EventTypes METRIC
-
HEARTBEAT
public static final EventTypes HEARTBEAT
-
PERFORMANCE
public static final EventTypes PERFORMANCE
-
-
Method Detail
-
values
public static EventTypes[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EventTypes 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
-
getType
public String getType()
-
-