Package com.creditcall.chipdnamobile
Interface IConnectAndConfigureFinishedListener
-
public interface IConnectAndConfigureFinishedListenerThis interface is used to receive notification of the result after calling methodChipDnaMobile.connectAndConfigure(Parameters).- Author:
- Creditcall Ltd
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonConnectAndConfigureFinished(Parameters parameters)Invoked after connect and configure processing is finished.
-
-
-
Method Detail
-
onConnectAndConfigureFinished
void onConnectAndConfigureFinished(Parameters parameters)
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).
-
-