Class ExternalPaymentProperties
- java.lang.Object
-
- com.broadleafcommerce.cartoperation.service.provider.external.payments.ExternalPaymentProperties
-
@ConfigurationProperties("broadleaf.cartoperation.paymentprovider") public class ExternalPaymentProperties extends ObjectProperties for interacting with an external payment transaction service.- Author:
- Dima Myroniuk (dmyroniuk)
-
-
Constructor Summary
Constructors Constructor Description ExternalPaymentProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAuthorizeAndCaptureUri()The URI path for executing an authorize and capture transaction.StringgetAuthorizeUri()The URI path for executing an authorize transaction.StringgetClaimTransactionsForRequestUri()The URI path to reset payment transaction reversal state.StringgetFinalizePaymentsUri()The URI path for finalizing payments after checkout.StringgetLockPaymentsUri()The URI path for locking multiple payments.StringgetLookup3dsTransactionResultUri()The URI path to lookup 3DS payment transaction results from the gateway.StringgetPaymentsUri()The URI path for basic CRUD operations on payments.StringgetPaymentTransactionsUri()The URI path for basic CRUD operations on payment transactions.StringgetServiceClient()The service client to use when calling payment transaction services.StringgetTransferCsrPaymentsToCustomerUri()The URI path for transferring a CSR payment to a customer.StringgetTransferCustomerPaymentsToCsrUri()The URI path for transferring a customer payment to a CSR.StringgetUnlockPaymentsUri()The URI path for locking multiple payments.StringgetUrl()The base url for an external payment transaction service.voidsetAuthorizeAndCaptureUri(String authorizeAndCaptureUri)The URI path for executing an authorize and capture transaction.voidsetAuthorizeUri(String authorizeUri)The URI path for executing an authorize transaction.voidsetClaimTransactionsForRequestUri(String claimTransactionsForRequestUri)The URI path to reset payment transaction reversal state.voidsetFinalizePaymentsUri(String finalizePaymentsUri)The URI path for finalizing payments after checkout.voidsetLockPaymentsUri(String lockPaymentsUri)The URI path for locking multiple payments.voidsetLookup3dsTransactionResultUri(String lookup3dsTransactionResultUri)The URI path to lookup 3DS payment transaction results from the gateway.voidsetPaymentsUri(String paymentsUri)The URI path for basic CRUD operations on payments.voidsetPaymentTransactionsUri(String paymentTransactionsUri)The URI path for basic CRUD operations on payment transactions.voidsetServiceClient(String serviceClient)The service client to use when calling payment transaction services.voidsetTransferCsrPaymentsToCustomerUri(String transferCsrPaymentsToCustomerUri)The URI path for transferring a CSR payment to a customer.voidsetTransferCustomerPaymentsToCsrUri(String transferCustomerPaymentsToCsrUri)The URI path for transferring a customer payment to a CSR.voidsetUnlockPaymentsUri(String unlockPaymentsUri)The URI path for locking multiple payments.voidsetUrl(String url)The base url for an external payment transaction service.
-
-
-
Method Detail
-
getUrl
public String getUrl()
The base url for an external payment transaction service.
-
getPaymentsUri
public String getPaymentsUri()
The URI path for basic CRUD operations on payments.
-
getPaymentTransactionsUri
public String getPaymentTransactionsUri()
The URI path for basic CRUD operations on payment transactions.
-
getLockPaymentsUri
public String getLockPaymentsUri()
The URI path for locking multiple payments.
-
getUnlockPaymentsUri
public String getUnlockPaymentsUri()
The URI path for locking multiple payments.
-
getAuthorizeUri
public String getAuthorizeUri()
The URI path for executing an authorize transaction.
-
getAuthorizeAndCaptureUri
public String getAuthorizeAndCaptureUri()
The URI path for executing an authorize and capture transaction.
-
getFinalizePaymentsUri
public String getFinalizePaymentsUri()
The URI path for finalizing payments after checkout.
-
getTransferCustomerPaymentsToCsrUri
public String getTransferCustomerPaymentsToCsrUri()
The URI path for transferring a customer payment to a CSR.
-
getTransferCsrPaymentsToCustomerUri
public String getTransferCsrPaymentsToCustomerUri()
The URI path for transferring a CSR payment to a customer.
-
getClaimTransactionsForRequestUri
public String getClaimTransactionsForRequestUri()
The URI path to reset payment transaction reversal state.
-
getLookup3dsTransactionResultUri
public String getLookup3dsTransactionResultUri()
The URI path to lookup 3DS payment transaction results from the gateway.
-
getServiceClient
public String getServiceClient()
The service client to use when calling payment transaction services. Default is "cartopsclient".
-
setUrl
public void setUrl(String url)
The base url for an external payment transaction service.
-
setPaymentsUri
public void setPaymentsUri(String paymentsUri)
The URI path for basic CRUD operations on payments.
-
setPaymentTransactionsUri
public void setPaymentTransactionsUri(String paymentTransactionsUri)
The URI path for basic CRUD operations on payment transactions.
-
setLockPaymentsUri
public void setLockPaymentsUri(String lockPaymentsUri)
The URI path for locking multiple payments.
-
setUnlockPaymentsUri
public void setUnlockPaymentsUri(String unlockPaymentsUri)
The URI path for locking multiple payments.
-
setAuthorizeUri
public void setAuthorizeUri(String authorizeUri)
The URI path for executing an authorize transaction.
-
setAuthorizeAndCaptureUri
public void setAuthorizeAndCaptureUri(String authorizeAndCaptureUri)
The URI path for executing an authorize and capture transaction.
-
setFinalizePaymentsUri
public void setFinalizePaymentsUri(String finalizePaymentsUri)
The URI path for finalizing payments after checkout.
-
setTransferCustomerPaymentsToCsrUri
public void setTransferCustomerPaymentsToCsrUri(String transferCustomerPaymentsToCsrUri)
The URI path for transferring a customer payment to a CSR.
-
setTransferCsrPaymentsToCustomerUri
public void setTransferCsrPaymentsToCustomerUri(String transferCsrPaymentsToCustomerUri)
The URI path for transferring a CSR payment to a customer.
-
setClaimTransactionsForRequestUri
public void setClaimTransactionsForRequestUri(String claimTransactionsForRequestUri)
The URI path to reset payment transaction reversal state.
-
setLookup3dsTransactionResultUri
public void setLookup3dsTransactionResultUri(String lookup3dsTransactionResultUri)
The URI path to lookup 3DS payment transaction results from the gateway.
-
setServiceClient
public void setServiceClient(String serviceClient)
The service client to use when calling payment transaction services. Default is "cartopsclient".
-
-