com.hps.integrator.applepay.ecv1.PaymentData3DS Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of secure-submit Show documentation
Show all versions of secure-submit Show documentation
The SecureSubmit Java SDK simplifies processing of credit card transactions using Heartland Payment Systems' Portico Payment Gateway
package com.hps.integrator.applepay.ecv1;
public class PaymentData3DS
{
//
private String mOnlinePaymentCryptogram;
private String mPaymentDataType = "3DSecure";
private String mEciIndicator = "";
//
public PaymentData3DS(String onlinePaymentCryptogram, String eciIndicator)
{
mOnlinePaymentCryptogram = onlinePaymentCryptogram;
mEciIndicator = eciIndicator;
}
public PaymentData3DS(String onlinePaymentCryptogram, String eciIndicator, String paymentDataType)
{
mOnlinePaymentCryptogram = onlinePaymentCryptogram;
mEciIndicator = eciIndicator;
mPaymentDataType = paymentDataType;
}
public String getOnlinePaymentCryptogram()
{
return this.mOnlinePaymentCryptogram;
}
public String getPaymentDataTye()
{
return mPaymentDataType;
}
public String getEciIndicator() {
return mEciIndicator;
}
}