Enum SecurityJwtIncidentType
- java.lang.Object
-
- java.lang.Enum<SecurityJwtIncidentType>
-
- io.tech1.framework.domain.properties.base.SecurityJwtIncidentType
-
- All Implemented Interfaces:
Serializable,Comparable<SecurityJwtIncidentType>
public enum SecurityJwtIncidentType extends Enum<SecurityJwtIncidentType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()StringtoString()static SecurityJwtIncidentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SecurityJwtIncidentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHENTICATION_LOGIN
public static final SecurityJwtIncidentType AUTHENTICATION_LOGIN
-
AUTHENTICATION_LOGIN_FAILURE_USERNAME_PASSWORD
public static final SecurityJwtIncidentType AUTHENTICATION_LOGIN_FAILURE_USERNAME_PASSWORD
-
AUTHENTICATION_LOGIN_FAILURE_USERNAME_MASKED_PASSWORD
public static final SecurityJwtIncidentType AUTHENTICATION_LOGIN_FAILURE_USERNAME_MASKED_PASSWORD
-
AUTHENTICATION_LOGOUT
public static final SecurityJwtIncidentType AUTHENTICATION_LOGOUT
-
AUTHENTICATION_LOGOUT_MIN
public static final SecurityJwtIncidentType AUTHENTICATION_LOGOUT_MIN
-
SESSION_REFRESHED
public static final SecurityJwtIncidentType SESSION_REFRESHED
-
SESSION_EXPIRED
public static final SecurityJwtIncidentType SESSION_EXPIRED
-
REGISTER1
public static final SecurityJwtIncidentType REGISTER1
-
REGISTER1_FAILURE
public static final SecurityJwtIncidentType REGISTER1_FAILURE
-
-
Method Detail
-
values
public static SecurityJwtIncidentType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SecurityJwtIncidentType c : SecurityJwtIncidentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SecurityJwtIncidentType 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<SecurityJwtIncidentType>
-
-