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

com.hps.integrator.services.HpsBatchService 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.services;

import com.hps.integrator.abstractions.IHpsServicesConfig;
import com.hps.integrator.entities.batch.HpsBatch;
import com.hps.integrator.infrastructure.Element;
import com.hps.integrator.infrastructure.ElementTree;
import com.hps.integrator.infrastructure.HpsException;
import com.hps.integrator.infrastructure.validation.HpsGatewayResponseValidation;

import java.math.BigDecimal;

public class HpsBatchService extends HpsSoapGatewayService {

    public HpsBatchService(IHpsServicesConfig config) throws HpsException {
        super(config);
    }

    public HpsBatch closeBatch() throws HpsException {
        Element transaction = Et.element("BatchClose");

        ElementTree rsp = this.doTransaction(transaction);
        HpsGatewayResponseValidation.checkGatewayResponse(rsp, transaction.tag());

        // Process the response
        Element batchClose = rsp.get("BatchClose");
        HpsBatch batch = new HpsBatch();

        if(batchClose.has("BatchId"))
            batch.setId(batchClose.getInt("BatchId"));
        if(batchClose.has("BatchSeqNbr"))
            batch.setSequenceNumber(batchClose.getInt("BatchSeqNbr"));
        if(batchClose.has("TotalAmount"))
            batch.setTotalAmount(new BigDecimal(batchClose.getString("TotalAmount")));
        if(batchClose.has("TxnCnt"))
            batch.setTransactionCount(batchClose.getInt("TxnCnt"));

        return batch;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy