Package com.creditcall.chipdnamobile
Interface IVerifyIdListener
-
public interface IVerifyIdListenerThis interface is used to receive notification when ID verification is required during a transaction. Before callingChipDnaMobile.startTransaction(Parameters)register this listener usingChipDnaMobile.addVerifyIdListener(IVerifyIdListener).- Author:
- Creditcall Ltd.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonVerifyId(Parameters parameters)Invoked when ID verification is required.
-
-
-
Method Detail
-
onVerifyId
void onVerifyId(Parameters parameters)
Invoked when ID verification is required.- Parameters:
parameters-Parameterscollection which can contain:ParameterKeys.ResponseRequiredindicating whether the integrating application needs to respond. When the value isParameterValues.TRUEa call toChipDnaMobile.continueIdVerification(Parameters)is required for the transaction to continue. When the value isParameterValues.FALSE, this is just a notification and no action is needed.ParameterKeys.OperatorPinRequiredcontains valueParameterValues.TRUEif the Operator PIN is required.
-
-