Package com.gemalto.mfs.mwsdk.payment
Enum Class CHVerificationMethod
- All Implemented Interfaces:
Serializable,Comparable<CHVerificationMethod>,Constable
Enumeration of possible CardHolder verification method that may be required
when activating a digitalized card for transaction.
Following is the mapping for the different CVM and type of verifier object.
Following is the mapping for the different CVM and type of verifier object.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThis is one of the options for a category of On-Device verification method.This is one of the options for a category of On-Device verification method.This is used when CARDLIKE This implies that the profile does not require mobile pin, Wallet PIN or Device fingerprint to make a transaction.This is one of the options for a category of On-Device verification method. -
Method Summary
Modifier and TypeMethodDescriptionintgetValue()toString()String representation of the Enum.static CHVerificationMethodReturns the enum constant of this class with the specified name.static CHVerificationMethod[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
WALLET_PIN
This is one of the options for a category of On-Device verification method. The wallet PIN is set after the first card enrolment depending on the card profile. This Verfication Method will no longer be supported for from SDK V6.x -
DEVICE_KEYGUARD
This is one of the options for a category of On-Device verification method. The Device Unlock verification method is supported if the following conditions are satisified:- The card profile supports Flexible CDCVM
- The device OS is Android 6.0 or above.
- Secure lock mechanism is enabled in the device.
-
BIOMETRICS
This is one of the options for a category of On-Device verification method. The BIOMETRICS verification method is supported if the following conditions are satisfied:- The card profile supports Flexible CDCVM
- The device supports biometric authentication including fingerprint
- The device OS is Android 6.0 or above.
- Secure lock mechanism is enabled in the device.
-
NONE
This is used when CARDLIKE This implies that the profile does not require mobile pin, Wallet PIN or Device fingerprint to make a transaction. The profile supports either online pin (where the user is expected to enter the pin through the POS) or signature.
-
-
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
-
getValue
public int getValue()- Returns:
- Returns the integer value of the CHVerification method set currently
-
toString
String representation of the Enum.- Overrides:
toStringin classEnum<CHVerificationMethod>- Returns:
- String representation of the Enum.
-