Package com.creditcall.chipdnamobile
Interface IApplicationSelectionListener
public interface IApplicationSelectionListener
This interface is used to receive notification when Application Selection is required during a transaction.
Before calling
ChipDnaMobile.startTransaction(Parameters) register this listener using ChipDnaMobile.addApplicationSelectionListener(IApplicationSelectionListener).- Author:
- Creditcall Ltd.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonApplicationSelection(Parameters parameters) Invoked when Application Selection is required.
-
Method Details
-
onApplicationSelection
Invoked when Application Selection is required.- Parameters:
parameters-Parameterscollection which can contain:ParameterKeys.ResponseRequiredindicating whether the integrating application needs to respond. When the value isParameterValues.TRUEa call toChipDnaMobile.continueApplicationSelection(Parameters)is required for the transaction to continue. When the value isParameterValues.FALSE, this is just a notification and no action is needed.ParameterKeys.AvailableApplicationscontains the available applications.
-