Package com.creditcall.chipdnamobile
Interface IForceAcceptanceListener
public interface IForceAcceptanceListener
This interface is used to receive notification when a force acceptance decision is required during a transaction.
Before calling
ChipDnaMobile.startTransaction(Parameters) register this listener using ChipDnaMobile.addForceAcceptanceListener(IForceAcceptanceListener) .- Author:
- Creditcall Ltd.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonForceAcceptance(Parameters parameters) Invoked when force acceptance decision is required.
-
Method Details
-
onForceAcceptance
Invoked when force acceptance decision is required.- Parameters:
parameters-Parameterscollection which can contain:ParameterKeys.ResponseRequiredindicating whether the integrating application needs to respond. When the value isParameterValues.TRUEa call toChipDnaMobile.continueForceAcceptance(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.
-