Interface AppToAppData
-
public interface AppToAppData
A data class to be used inPendingCardActivation.getAppToAppData()
It will provide MPA data to launch issuer application- Since:
- 6.3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getPayLoad()
An opaque payload generated by TSP to be returned to the Issuer Application as it is.java.lang.String
getScheme()
The scheme name.java.lang.String
getSource()
For: 1.
-
-
-
Method Detail
-
getScheme
java.lang.String getScheme()
The scheme name. {VISA or MASTERCARD}- Returns:
- used by the Wallet developer to manage "source" field
-
getPayLoad
java.lang.String getPayLoad()
An opaque payload generated by TSP to be returned to the Issuer Application as it is.- Returns:
- it will be required by issuer app to communicate with TSP
-
getSource
java.lang.String getSource()
For: 1. VISA: concatenation of application ID and intent handler. 2. MasterCard: action and package name.- Returns:
- it will be used by the Wallet App to trigger the Issuer App, data will be different as per Scheme.
-
-