Package io.jans.as.server.model.audit
Enum Action
- java.lang.Object
-
- java.lang.Enum<Action>
-
- io.jans.as.server.model.audit.Action
-
- All Implemented Interfaces:
Serializable
,Comparable<Action>
public enum Action extends Enum<Action>
- Version:
- August 20, 2019
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static Action
valueOf(String name)
Returns the enum constant of this type with the specified name.static Action[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLIENT_REGISTRATION
public static final Action CLIENT_REGISTRATION
-
CLIENT_UPDATE
public static final Action CLIENT_UPDATE
-
CLIENT_READ
public static final Action CLIENT_READ
-
CLIENT_DELETE
public static final Action CLIENT_DELETE
-
USER_AUTHORIZATION
public static final Action USER_AUTHORIZATION
-
AUTHORIZATION_CHALLENGE
public static final Action AUTHORIZATION_CHALLENGE
-
BACKCHANNEL_AUTHENTICATION
public static final Action BACKCHANNEL_AUTHENTICATION
-
BACKCHANNEL_DEVICE_REGISTRATION
public static final Action BACKCHANNEL_DEVICE_REGISTRATION
-
USER_INFO
public static final Action USER_INFO
-
TOKEN_REQUEST
public static final Action TOKEN_REQUEST
-
TOKEN_VALIDATE
public static final Action TOKEN_VALIDATE
-
TOKEN_REVOCATION
public static final Action TOKEN_REVOCATION
-
SESSION_UNAUTHENTICATED
public static final Action SESSION_UNAUTHENTICATED
-
SESSION_AUTHENTICATED
public static final Action SESSION_AUTHENTICATED
-
SESSION_DESTROYED
public static final Action SESSION_DESTROYED
-
DEVICE_CODE_AUTHORIZATION
public static final Action DEVICE_CODE_AUTHORIZATION
-
SSA_CREATE
public static final Action SSA_CREATE
-
SSA_READ
public static final Action SSA_READ
-
-
Method Detail
-
values
public static Action[] 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 (Action c : Action.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Action 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
-
-