Interface SDKInfo
-
public interface SDKInfoContains information of the current configuration with which the 3DS SDK operates.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.DategetLicenseExpiryDate()Provides the 3DS SDK license expiry date.java.util.List<SchemeInfo>getSchemeConfigurations()The current payment scheme configuration of the 3DS SDK.java.util.List<java.lang.String>getSupportedProtocolVersions()Provides a list of supported EMVCo Protocols by the 3DS SDK.
-
-
-
Method Detail
-
getSchemeConfigurations
java.util.List<SchemeInfo> getSchemeConfigurations()
The current payment scheme configuration of the 3DS SDK.- Returns:
- list of
SchemeInfowith which the 3DS SDK is configured and utilizes during the authentication process.
-
getLicenseExpiryDate
java.util.Date getLicenseExpiryDate()
Provides the 3DS SDK license expiry date.- Returns:
- -
Datein the future until when the 3DS SDK license is valid. -Datein the past if the 3DS SDK license has expired and the 3DS SDK is in a grace period. Action is needed for renewal of the license. -nullif the 3DS SDK is in a trial period.
-
getSupportedProtocolVersions
java.util.List<java.lang.String> getSupportedProtocolVersions()
Provides a list of supported EMVCo Protocols by the 3DS SDK.- Returns:
- list of supported EMVCo Protocols by the 3DS SDK
-
-