Interface IFirmwareUpdateListener
-
public interface IFirmwareUpdateListenerThis interface is used to listen to updates when a firmware update is being performed. Set observer before calling methodChipDnaMobile.connectAndConfigure(com.creditcall.chipdnamobile.Parameters).- Author:
- Creditcall Ltd
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonFirmwareUpdate(Parameters parameters)Invoked during firmware updates viaChipDnaMobile.connectAndConfigure(com.creditcall.chipdnamobile.Parameters)andChipDnaMobile.requestTmsUpdate(com.creditcall.chipdnamobile.Parameters).
-
-
-
Method Detail
-
onFirmwareUpdate
void onFirmwareUpdate(Parameters parameters)
Invoked during firmware updates viaChipDnaMobile.connectAndConfigure(com.creditcall.chipdnamobile.Parameters)andChipDnaMobile.requestTmsUpdate(com.creditcall.chipdnamobile.Parameters).Currently events for firmware updates are only supported on Miura M020, Miura M021 and IDTech VP3350.
- Parameters:
parameters-Parameterscollection which can contain:ParameterKeys.FirmwareUpdateAvailableWhen present with the valueParameterValues.TRUE, indicates that a firmware update is available for the currently configured terminal.ParameterKeys.FirmwareUpdateStatusAn XML representation of aFirmwareUpdateStatusobject. {@link ChipDnaMobileSerializer#deserializeFirmwareUpdateStatus:} can be used to retrieve an object.ParameterKeys.FirmwareDownloadPercentageA value from 0 to 100 which shows the percentage of the firmware downloaded to the PIN pad.ParameterKeys.FirmwareFileThe name of the file being downloaded to the PIN pad.ParameterKeys.FirmwareUpdateAFirmwareUpdatesproviding an update on the firmware update process.
-
-