Package com.creditcall.chipdnamobile
Interface ICardDetailsListener
-
public interface ICardDetailsListenerThis interface is used to receive notifications of the card details after methodChipDnaMobile.getCardDetails(Parameters)is called. Register the listener usingChipDnaMobile.addCardDetailsListener(ICardDetailsListener).- Author:
- Creditcall Ltd.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonCardDetails(Parameters parameters)Invoked after card details have been acquired.
-
-
-
Method Detail
-
onCardDetails
void onCardDetails(Parameters parameters)
Invoked after card details have been acquired.- Parameters:
parameters-Parameterscollection which can contain:ParameterKeys.Resultdefining whether card details have successfully be retrieved. Value can be eitherParameterValues.TRUEorParameterValues.FALSE.ParameterKeys.Errorsdefining a comma separated string of error strings.ParameterKeys.ExpiryDatedefining the expiry date returned by the PIN pad in the format YYMM.ParameterKeys.MaskedTrack2defining the masked track2 returned by the PIN pad.ParameterKeys.MaskedPandefining the masked PAN returned by the PIN pad.
-
-