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

com.hps.integrator.applepay.ecv1.PaymentTokenHeader 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.applepay.ecv1;

public class PaymentTokenHeader
{
    // 
    private final String mEphemeralPublicKey;

    private final String mPublicKeyHash;

    private final String mTransactionId;

    private final String mApplicationData;
    // 

    public PaymentTokenHeader(
            String ephemeralPublicKey,
            String publicKeyHash,
            String transactionId
    )
    {
        this.mEphemeralPublicKey = ephemeralPublicKey;
        this.mPublicKeyHash = publicKeyHash;
        this.mTransactionId = transactionId;
        this.mApplicationData = null;
    }

    public PaymentTokenHeader(
            String ephemeralPublicKey,
            String publicKeyHash,
            String transactionId,
            String applicationData
    )
    {
        this.mEphemeralPublicKey = ephemeralPublicKey;
        this.mPublicKeyHash = publicKeyHash;
        this.mTransactionId = transactionId;
        this.mApplicationData = applicationData;
    }

    public String getEphemeralPublicKey() {
        return mEphemeralPublicKey;
    }

    public String getPublicKeyHash() {
        return mPublicKeyHash;
    }

    public String getTransactionId() {
        return mTransactionId;
    }

    public String getApplicationData()
    {
        return this.mApplicationData;
    }

    public boolean hasApplicationData()
    {
        return this.mApplicationData != null && this.mApplicationData.length() > 0;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy