Package com.creditcall.chipdnamobile
Interface IAvailablePinPadsListener
-
public interface IAvailablePinPadsListenerThis interface is used to receive notifications of the available PIN pads after methodChipDnaMobile.getAvailablePinPads(Parameters)is called. Register the listener usingChipDnaMobile.addAvailablePinPadsListener(IAvailablePinPadsListener).- Author:
- Creditcall Ltd.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonAvailablePinPads(Parameters parameters)Invoked after search of available PIN pads is complete.
-
-
-
Method Detail
-
onAvailablePinPads
void onAvailablePinPads(Parameters parameters)
Invoked after search of available PIN pads is complete.- Parameters:
parameters-Parameterscollection which can contain:ParameterKeys.AvailablePinPadsAn XML representation of PIN pads found.ChipDnaMobileSerializer.deserializeAvailablePinPads(String)can be used to deserialize intoHashMapwith connection type as keys andArrayListof PIN pad names as values.
-
-