Package com.creditcall.chipdnamobile
Interface ICardDetailsListener
public interface ICardDetailsListener
This interface is used to receive notifications of the card details after method
ChipDnaMobile.getCardDetails(Parameters) is called.
Register the listener using ChipDnaMobile.addCardDetailsListener(ICardDetailsListener).- Author:
- Creditcall Ltd.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonCardDetails(Parameters parameters) Invoked after card details have been acquired.
-
Method Details
-
onCardDetails
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.
-