Enum Class WalletSecureEnrollmentErrorCodes
java.lang.Object
java.lang.Enum<WalletSecureEnrollmentErrorCodes>
com.gemalto.mfs.mwsdk.provisioning.model.WalletSecureEnrollmentErrorCodes
- All Implemented Interfaces:
Serializable,Comparable<WalletSecureEnrollmentErrorCodes>,Constable
This class represents the errors occurred during performing wallet secure enrollment.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCommunication error occurred while performing request to the server.Internet is not available.Error received from the server.Error returned when Device is suspicious.JSON parsing error during the request.For security reason, the user needs to re-enroll the application.ASM Error.CPS component not initialized.Error linked to downloading of resources.Failed to compute auth value forinitSession, this can happen when get app public key hash has exception about certification issues.Failed to compute auth value forinitSession, this can happen when get app public key hash has exception about package name not found.Init session error.Internal renewal errorError returned when KCV is wrong.LUK not found.LUK replacement failed.MobileGateway not initialized.Enrollment request failed.SDK Wallet Secure enrollment internal storage access error. -
Method Summary
Modifier and TypeMethodDescriptiongetCode()Returns the enum constant of this class with the specified name.static WalletSecureEnrollmentErrorCodes[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
WSE_INTERNAL_ERROR
Internal renewal error -
COMMON_NO_INTERNET
Internet is not available.
This error is also returned if the client has attempted several times to connect but not able to due to very weak network signal. Please try again with good internet connection -
COMMON_COMM_ERROR
Communication error occurred while performing request to the server. Please try again with good internet connection -
COMMON_SERVER_ERROR
Error received from the server. -
RE_ENROLLMENT_REQUIRED
For security reason, the user needs to re-enroll the application. -
WSE_STORAGE_ACCESS_ERROR
SDK Wallet Secure enrollment internal storage access error. Please try again and if error keeps happening , please perform wipe all of SDK and try again. -
JSON_PARSING_ERROR
JSON parsing error during the request. -
WSE_REQUEST_ERROR
Enrollment request failed. -
WSE_DOWNLOAD_ERROR
Error linked to downloading of resources. Please try again with good internet connection -
WSE_LUK_REPLACEMENT_ERROR
LUK replacement failed. -
WSE_LUK_NOT_FOUND
LUK not found. -
WSE_ERROR_INIT_SESSION
Init session error. -
WSE_ERROR_COMPUTE_AUTH_VALUE_FAILED_PACKAGE_NOT_FOUND
public static final WalletSecureEnrollmentErrorCodes WSE_ERROR_COMPUTE_AUTH_VALUE_FAILED_PACKAGE_NOT_FOUNDFailed to compute auth value forinitSession, this can happen when get app public key hash has exception about package name not found. -
WSE_ERROR_COMPUTE_AUTH_VALUE_FAILED_CERT_EXCEPTION
public static final WalletSecureEnrollmentErrorCodes WSE_ERROR_COMPUTE_AUTH_VALUE_FAILED_CERT_EXCEPTIONFailed to compute auth value forinitSession, this can happen when get app public key hash has exception about certification issues. -
WSE_ASM_ERROR
ASM Error. -
WSE_CPS_COMPONENT_NOT_INITIALIZED
CPS component not initialized. Make sure CPS component is fully initialized.- Since:
- 6.4.3
-
WSE_MG_COMPONENT_NOT_INITIALIZED
MobileGateway not initialized. Make sure MobileGateway is fully initialized.- Since:
- 6.4.3
-
DEVICE_SUSPICIOUS
Error returned when Device is suspicious. This operation cannot continue.- Since:
- 6.5.0
-
WSE_KCV_ERROR
Error returned when KCV is wrong. This operation cannot continue.- Since:
- 6.6.0
-
-
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
-
getCode
-