All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hps.integrator.entities.HpsTrackData Maven / Gradle / Ivy

Go to download

The SecureSubmit Java SDK simplifies processing of credit card transactions using Heartland Payment Systems' Portico Payment Gateway

There is a newer version: v2.5.2
Show newest version
package com.hps.integrator.entities;

import com.hps.integrator.infrastructure.HpsTrackDataMethod;

public class HpsTrackData {

	private HpsTrackDataMethod trackDataMethod;
	private String value;
    private HpsEncryptionData encryptionData;

    public HpsTrackDataMethod getTrackDataMethod() {
        return trackDataMethod;
    }

    public void setTrackDataMethod(HpsTrackDataMethod trackDataMethod) {
        this.trackDataMethod = trackDataMethod;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

    public HpsEncryptionData getEncryptionData() {
        return encryptionData;
    }

    public void setEncryptionData(HpsEncryptionData encryptionData) {
        this.encryptionData = encryptionData;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy