Package com.creditcall.chipdnamobile
Interface IConnectAndConfigureFinishedListener
public interface IConnectAndConfigureFinishedListener
This interface is used to receive notification of the result after calling method
ChipDnaMobile.connectAndConfigure(Parameters).- Author:
- Creditcall Ltd
-
Method Summary
Modifier and TypeMethodDescriptionvoidonConnectAndConfigureFinished(Parameters parameters) Invoked after connect and configure processing is finished.
-
Method Details
-
onConnectAndConfigureFinished
Invoked after connect and configure processing is finished.- Parameters:
parameters-Parameterscollection which can contain:ParameterKeys.Resultdefining whether ChipDna Mobile successfully connected to and configured the PIN pad be retrieved. Value can be eitherParameterValues.TRUEorParameterValues.FALSE. When the value isParameterValues.TRUEthen the PIN pad is ready to process transactions.ParameterKeys.Errorscontains any errors encountered.ParameterKeys.FirmwareUpdateAvailabledefining if a firmware update is available using the valuesParameterValues.TRUEandParameterValues.FALSE.ParameterKeys.FirmwareUpdateStatusreturned with a serializedFirmwareUpdateStatusobject.FirmwareUpdateStatuscan be deserialized usingChipDnaMobileSerializer.deserializeFirmwareUpdateStatus(java.lang.String).
-