Enum Action

java.lang.Object
java.lang.Enum<Action>
io.jans.as.server.model.audit.Action
All Implemented Interfaces:
Serializable, Comparable<Action>, java.lang.constant.Constable

public enum Action extends Enum<Action>
Version:
August 20, 2019
  • Enum Constant Details

    • 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
    • PAR_REQUEST

      public static final Action PAR_REQUEST
    • 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 Details

    • values

      public static Action[] 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 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 name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Action>