Package com.creditcall.chipdnamobile
Interface ITmsUpdateListener
public interface ITmsUpdateListener
This interface is used to listen when an update from the TMS server is being
performed. Register listener before calling
ChipDnaMobile.requestTmsUpdate(Parameters)- Author:
- Creditcall Ltd
-
Method Summary
Modifier and TypeMethodDescriptionvoidonTmsUpdate(Parameters tmsUpdateParameters) Invoked when the update has finished successfully.
-
Method Details
-
onTmsUpdate
Invoked when the update has finished successfully.- Parameters:
tmsUpdateParameters-Parameterscollection which can contain:ParameterKeys.Resultindicating if the Tms Update was successful.ParameterKeys.Errorscontains any errors encountered.ParameterKeys.TmsUpdateUtcThe date and time of the Tms Update.ParameterKeys.DateTimeFormatThe format of date and time inParameterKeys.TmsUpdateUtc.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).
-