com.global.api.gateways.IPaymentGateway Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of globalpayments-sdk Show documentation
Show all versions of globalpayments-sdk Show documentation
API for processing payments through Global Payments
package com.global.api.gateways;
import com.global.api.builders.AuthorizationBuilder;
import com.global.api.builders.ManagementBuilder;
import com.global.api.entities.Transaction;
import com.global.api.entities.exceptions.ApiException;
import com.global.api.network.NetworkMessageHeader;
public interface IPaymentGateway {
Transaction processAuthorization(AuthorizationBuilder builder) throws ApiException;
Transaction manageTransaction(ManagementBuilder builder) throws ApiException;
String serializeRequest(AuthorizationBuilder builder) throws ApiException;
NetworkMessageHeader sendKeepAlive() throws ApiException;
boolean supportsHostedPayments();
boolean supportsOpenBanking();
}