com.hps.integrator.entities.HpsEncryptionData 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.entities;
public class HpsEncryptionData {
String version;
String encryptedTrackNumber;
String ktb;
String ksn;
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public String getEncryptedTrackNumber() {
return encryptedTrackNumber;
}
public void setEncryptedTrackNumber(String encryptedTrackNumber) {
this.encryptedTrackNumber = encryptedTrackNumber;
}
public String getKtb() {
return ktb;
}
public void setKtb(String ktb) {
this.ktb = ktb;
}
public String getKsn() {
return ksn;
}
public void setKsn(String ksn) {
this.ksn = ksn;
}
}