Enum Class BankIdAuditEventTypes
- All Implemented Interfaces:
Serializable
,Comparable<BankIdAuditEventTypes>
,Constable
Audit event types for the BankID IdP.
- Author:
- Martin Lindström, Felix Hellman
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA BankID authentication operation has been successfully completed.An operation that was started was cancelled by the user.An error occurred when processing a BankID request.Received request for auth/sign.The BankID operation has been initiated, i.e., the underlying BankID server has been invoked.A BankID signature operation has been successfully completed. -
Method Summary
Modifier and TypeMethodDescriptionGets the event type name.static BankIdAuditEventTypes
Returns the enum constant of this class with the specified name.static BankIdAuditEventTypes[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BANKID_RECEIVED_REQUEST
Received request for auth/sign. -
INIT
The BankID operation has been initiated, i.e., the underlying BankID server has been invoked. -
AUTH_COMPLETE
A BankID authentication operation has been successfully completed. -
SIGN_COMPLETE
A BankID signature operation has been successfully completed. -
BANKID_CANCEL
An operation that was started was cancelled by the user. -
BANKID_ERROR
An error occurred when processing a BankID request.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getTypeName
Gets the event type name.- Returns:
- the event type name
-