Enum AuditModules
- java.lang.Object
-
- java.lang.Enum<AuditModules>
-
- io.mosip.authentication.core.constant.AuditModules
-
- All Implemented Interfaces:
Serializable,Comparable<AuditModules>
public enum AuditModules extends Enum<AuditModules>
The Enum AuditModules - Contains all the modules in IdAuthentication for Audit purpose.- Author:
- Manoj SP
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTH_TRANSACTION_HISTORYThe auth transaction history.AUTH_TYPE_STATUSThe auth type status.CREDENTIAL_STORAGEDEMO_AUTHThe demo auth.EKYC_AUTHThe e KY C AUTH.FACE_AUTHThe FACE_AUTH.FINGERPRINT_AUTHThe FINGERPRINT_AUTH.IDENTITY_CACHEIDENTITY_KEY_BINDINGIRIS_AUTHThe IRIS_AUTH.KYC_AUTHKYC_EXCHANGEOTP_AUTHThe otp auth.OTP_REQUESTThe otp request.PASSWORD_AUTHPIN_AUTHThe pin auth.STATIC_PIN_STORAGEThe Static Pin Storage.TOKEN_AUTHVCI_EXCHANGEVID_GENERATION_REQUESTThe vid generation request.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDesc()Gets the desc.StringgetModuleId()Gets the module id.StringgetModuleName()Gets the module name.static AuditModulesvalueOf(String name)Returns the enum constant of this type with the specified name.static AuditModules[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OTP_AUTH
public static final AuditModules OTP_AUTH
The otp auth.
-
DEMO_AUTH
public static final AuditModules DEMO_AUTH
The demo auth.
-
FINGERPRINT_AUTH
public static final AuditModules FINGERPRINT_AUTH
The FINGERPRINT_AUTH.
-
IRIS_AUTH
public static final AuditModules IRIS_AUTH
The IRIS_AUTH.
-
FACE_AUTH
public static final AuditModules FACE_AUTH
The FACE_AUTH.
-
TOKEN_AUTH
public static final AuditModules TOKEN_AUTH
-
PASSWORD_AUTH
public static final AuditModules PASSWORD_AUTH
-
EKYC_AUTH
public static final AuditModules EKYC_AUTH
The e KY C AUTH.
-
KYC_AUTH
public static final AuditModules KYC_AUTH
-
KYC_EXCHANGE
public static final AuditModules KYC_EXCHANGE
-
VCI_EXCHANGE
public static final AuditModules VCI_EXCHANGE
-
IDENTITY_KEY_BINDING
public static final AuditModules IDENTITY_KEY_BINDING
-
OTP_REQUEST
public static final AuditModules OTP_REQUEST
The otp request.
-
AUTH_TYPE_STATUS
public static final AuditModules AUTH_TYPE_STATUS
The auth type status.
-
AUTH_TRANSACTION_HISTORY
public static final AuditModules AUTH_TRANSACTION_HISTORY
The auth transaction history.
-
IDENTITY_CACHE
public static final AuditModules IDENTITY_CACHE
-
PIN_AUTH
public static final AuditModules PIN_AUTH
The pin auth.
-
STATIC_PIN_STORAGE
public static final AuditModules STATIC_PIN_STORAGE
The Static Pin Storage.
-
VID_GENERATION_REQUEST
public static final AuditModules VID_GENERATION_REQUEST
The vid generation request.
-
CREDENTIAL_STORAGE
public static final AuditModules CREDENTIAL_STORAGE
-
-
Method Detail
-
values
public static AuditModules[] 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 (AuditModules c : AuditModules.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuditModules 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
-
getDesc
public String getDesc()
Gets the desc.- Returns:
- the desc
-
getModuleId
public String getModuleId()
Gets the module id.- Returns:
- the module id
-
getModuleName
public String getModuleName()
Gets the module name.- Returns:
- the module name
-
-