Package com.gemalto.mfs.mwsdk.cdcvm
Class DeviceCVMVerifierInput
java.lang.Object
com.gemalto.mfs.mwsdk.cdcvm.DeviceCVMVerifierInput
A class that contains information used for starting biometric authentication.
This is applicable only from Android 6.0 onwards and if CHVerificationMethod is
BIOMETRICS.
-
Constructor Summary
ConstructorsConstructorDescriptionDeviceCVMVerifierInput(CharSequence title, CharSequence subtitle, CharSequence description, CharSequence negativeButtonText) Creates aDeviceCVMVerifierInputwith the specifiedtitle,subtitle,descriptionandnegative button text. -
Method Summary
Modifier and TypeMethodDescriptionReturns thedescriptionset in the constructor.Returns theDeviceCVMCancellationSignalcreated forDeviceCVMVerifierInput, which can be used to cancel the authentication operation started byDeviceCVMVerifier.startAuthentication(DeviceCVMVerifierInput)in the cases whereBIOMETRICSis used asCHVerificationMethod.Returns thenegative button textset in the constructor.Returns thesubtitleset in the constructor.getTitle()Returns thetitleset in the constructor.
-
Constructor Details
-
DeviceCVMVerifierInput
public DeviceCVMVerifierInput(CharSequence title, CharSequence subtitle, CharSequence description, CharSequence negativeButtonText) Creates aDeviceCVMVerifierInputwith the specifiedtitle,subtitle,descriptionandnegative button text.Notes:
-
title,subtitle,descriptionandnegative button textare only used when OS version is >= Android Q when displaying the unified biometric prompt dialog. -
To cancel the biometric authentication operation, use
DeviceCVMCancellationSignal.
-
-
-
Method Details
-
getDeviceCVMCancellationSignal
Returns theDeviceCVMCancellationSignalcreated forDeviceCVMVerifierInput, which can be used to cancel the authentication operation started byDeviceCVMVerifier.startAuthentication(DeviceCVMVerifierInput)in the cases whereBIOMETRICSis used asCHVerificationMethod. -
getTitle
Returns thetitleset in the constructor. -
getDescription
Returns thedescriptionset in the constructor. -
getSubtitle
Returns thesubtitleset in the constructor. -
getNegativeButtonText
Returns thenegative button textset in the constructor.
-