Package org.gluu.oxauth.model.audit
Enum Action
- java.lang.Object
-
- java.lang.Enum<Action>
-
- org.gluu.oxauth.model.audit.Action
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static Action
valueOf(java.lang.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
-
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
-
-
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(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<Action>
-
-