com.global.api.services.DebitService 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.services;
import com.global.api.ServicesContainer;
import com.global.api.builders.AuthorizationBuilder;
import com.global.api.entities.enums.PaymentMethodType;
import com.global.api.entities.enums.TransactionType;
import com.global.api.entities.exceptions.ApiException;
import com.global.api.paymentMethods.TransactionReference;
import com.global.api.serviceConfigs.GatewayConfig;
import java.math.BigDecimal;
public class DebitService {
public DebitService(GatewayConfig config) throws ApiException {
ServicesContainer.configureService(config);
}
public AuthorizationBuilder charge() {
return charge(null);
}
public AuthorizationBuilder charge(BigDecimal amount) {
return new AuthorizationBuilder(TransactionType.Sale).withAmount(amount);
}
public AuthorizationBuilder refund() {
return refund(null);
}
public AuthorizationBuilder refund(BigDecimal amount) {
TransactionReference reference = new TransactionReference();
reference.setPaymentMethodType(PaymentMethodType.Debit);
return new AuthorizationBuilder(TransactionType.Refund)
.withAmount(amount)
.withPaymentMethod(reference);
}
public AuthorizationBuilder reverse() {
return reverse(null);
}
public AuthorizationBuilder reverse(BigDecimal amount) {
TransactionReference reference = new TransactionReference();
reference.setPaymentMethodType(PaymentMethodType.Debit);
return new AuthorizationBuilder(TransactionType.Reversal)
.withAmount(amount)
.withPaymentMethod(reference);
}
}