Enum AuditEvents
- java.lang.Object
-
- java.lang.Enum<AuditEvents>
-
- io.mosip.authentication.core.constant.AuditEvents
-
- All Implemented Interfaces:
Serializable,Comparable<AuditEvents>
public enum AuditEvents extends Enum<AuditEvents>
The Enum AuditEvents - Contains all the events for auditing.- Author:
- Manoj SP
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEventId()Gets the event id.StringgetEventName()Gets the event name.StringgetEventType()Gets the event type.static AuditEventsvalueOf(String name)Returns the enum constant of this type with the specified name.static AuditEvents[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTH_REQUEST_RESPONSE
public static final AuditEvents AUTH_REQUEST_RESPONSE
The auth request response.
-
OTP_TRIGGER_REQUEST_RESPONSE
public static final AuditEvents OTP_TRIGGER_REQUEST_RESPONSE
The otp trigger request response.
-
EKYC_REQUEST_RESPONSE
public static final AuditEvents EKYC_REQUEST_RESPONSE
The ekyc request response.
-
INTERNAL_REQUEST_RESPONSE
public static final AuditEvents INTERNAL_REQUEST_RESPONSE
The internal request response.
-
INTERNAL_OTP_TRIGGER_REQUEST_RESPONSE
public static final AuditEvents INTERNAL_OTP_TRIGGER_REQUEST_RESPONSE
The internal otp trigger request response.
-
RETRIEVE_AUTH_TYPE_STATUS_REQUEST_RESPONSE
public static final AuditEvents RETRIEVE_AUTH_TYPE_STATUS_REQUEST_RESPONSE
The retrieve auth type status request response.
-
UPDATE_AUTH_TYPE_STATUS_REQUEST_RESPONSE
public static final AuditEvents UPDATE_AUTH_TYPE_STATUS_REQUEST_RESPONSE
The update auth type status request response.
-
RETRIEVE_AUTH_TRANSACTION_HISTORY_REQUEST_RESPONSE
public static final AuditEvents RETRIEVE_AUTH_TRANSACTION_HISTORY_REQUEST_RESPONSE
The retrieve auth transaction history request response.
-
CREDENTIAL_ISSUED_EVENT
public static final AuditEvents CREDENTIAL_ISSUED_EVENT
-
REMOVE_ID_EVENT
public static final AuditEvents REMOVE_ID_EVENT
-
DEACTIVATE_ID_EVENT
public static final AuditEvents DEACTIVATE_ID_EVENT
-
ACTIVATE_ID_EVENT
public static final AuditEvents ACTIVATE_ID_EVENT
-
CREDENTIAL_STORED_EVENT
public static final AuditEvents CREDENTIAL_STORED_EVENT
-
KYC_REQUEST_RESPONSE
public static final AuditEvents KYC_REQUEST_RESPONSE
-
KYC_EXCHANGE_REQUEST_RESPONSE
public static final AuditEvents KYC_EXCHANGE_REQUEST_RESPONSE
-
KEY_BINDIN_REQUEST_RESPONSE
public static final AuditEvents KEY_BINDIN_REQUEST_RESPONSE
-
VCI_EXCHANGE_REQUEST_RESPONSE
public static final AuditEvents VCI_EXCHANGE_REQUEST_RESPONSE
-
PASSWORD_BASED_AUTH_REQUEST
public static final AuditEvents PASSWORD_BASED_AUTH_REQUEST
-
STATIC_PIN_STORAGE_REQUEST_RESPONSE
public static final AuditEvents STATIC_PIN_STORAGE_REQUEST_RESPONSE
Static_Pin_Storage_Request_Response.
-
VID_GENERATE_REQUEST_RESPONSE
public static final AuditEvents VID_GENERATE_REQUEST_RESPONSE
The vid generate request response.
-
-
Method Detail
-
values
public static AuditEvents[] 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 (AuditEvents c : AuditEvents.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuditEvents 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
-
getEventId
public String getEventId()
Gets the event id.- Returns:
- the event id
-
getEventType
public String getEventType()
Gets the event type.- Returns:
- the event type
-
getEventName
public String getEventName()
Gets the event name.- Returns:
- the event name
-
-