Class ExternalVerifoneProviderProperties
- java.lang.Object
-
- com.broadleafcommerce.payment.service.gateway.privider.ExternalVerifoneProviderProperties
-
@ConfigurationProperties("broadleaf.verifone.provider") public class ExternalVerifoneProviderProperties extends ObjectThe properties for the Verifone API configuration.- Author:
- Dima Myroniuk (dmyroniuk)
-
-
Constructor Summary
Constructors Constructor Description ExternalVerifoneProviderProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetApiUrl()The Verifone API URL.StringgetCaptureAuthorizationUri()The URI to execute theCAPTUREtransaction.StringgetCreateUpdateTokenUri()The URI to create/update the token.StringgetDeleteTokenUri()The URI to delete the token.StringgetInitiatePaymentUri()The URI to execute theAUTHORIZEorAUTHORIZE_AND_CAPTUREtransaction.StringgetInitiateWalletPaymentUri()The URI to initiate a wallet payment using Google Pay or Apple Pay.StringgetRefundPaymentUri()The URI to execute theREFUNDtransaction.StringgetUpdateTokenUri()The URI to update the token.StringgetVoidAuthorizationUri()The URI to execute theREVERSE_AUTHtransaction.StringgetVoidCaptureUri()The URI to execute theREFUNDtransaction.voidinit()voidsetApiUrl(String apiUrl)The Verifone API URL.voidsetCaptureAuthorizationUri(String captureAuthorizationUri)The URI to execute theCAPTUREtransaction.voidsetCreateUpdateTokenUri(String createUpdateTokenUri)The URI to create/update the token.voidsetDeleteTokenUri(String deleteTokenUri)The URI to delete the token.voidsetInitiatePaymentUri(String initiatePaymentUri)The URI to execute theAUTHORIZEorAUTHORIZE_AND_CAPTUREtransaction.voidsetInitiateWalletPaymentUri(String initiateWalletPaymentUri)The URI to initiate a wallet payment using Google Pay or Apple Pay.voidsetRefundPaymentUri(String refundPaymentUri)The URI to execute theREFUNDtransaction.voidsetUpdateTokenUri(String updateTokenUri)The URI to update the token.voidsetVoidAuthorizationUri(String voidAuthorizationUri)The URI to execute theREVERSE_AUTHtransaction.voidsetVoidCaptureUri(String voidCaptureUri)The URI to execute theREFUNDtransaction.
-
-
-
Method Detail
-
init
@PostConstruct public void init()
-
getApiUrl
public String getApiUrl()
The Verifone API URL.
-
getInitiatePaymentUri
public String getInitiatePaymentUri()
The URI to execute theAUTHORIZEorAUTHORIZE_AND_CAPTUREtransaction.
-
getVoidAuthorizationUri
public String getVoidAuthorizationUri()
The URI to execute theREVERSE_AUTHtransaction.
-
getCaptureAuthorizationUri
public String getCaptureAuthorizationUri()
The URI to execute theCAPTUREtransaction.
-
getRefundPaymentUri
public String getRefundPaymentUri()
The URI to execute theREFUNDtransaction.
-
getVoidCaptureUri
public String getVoidCaptureUri()
The URI to execute theREFUNDtransaction.
-
getCreateUpdateTokenUri
public String getCreateUpdateTokenUri()
The URI to create/update the token.
-
getUpdateTokenUri
public String getUpdateTokenUri()
The URI to update the token.
-
getDeleteTokenUri
public String getDeleteTokenUri()
The URI to delete the token.
-
getInitiateWalletPaymentUri
public String getInitiateWalletPaymentUri()
The URI to initiate a wallet payment using Google Pay or Apple Pay.
-
setApiUrl
public void setApiUrl(String apiUrl)
The Verifone API URL.
-
setInitiatePaymentUri
public void setInitiatePaymentUri(String initiatePaymentUri)
The URI to execute theAUTHORIZEorAUTHORIZE_AND_CAPTUREtransaction.
-
setVoidAuthorizationUri
public void setVoidAuthorizationUri(String voidAuthorizationUri)
The URI to execute theREVERSE_AUTHtransaction.
-
setCaptureAuthorizationUri
public void setCaptureAuthorizationUri(String captureAuthorizationUri)
The URI to execute theCAPTUREtransaction.
-
setRefundPaymentUri
public void setRefundPaymentUri(String refundPaymentUri)
The URI to execute theREFUNDtransaction.
-
setVoidCaptureUri
public void setVoidCaptureUri(String voidCaptureUri)
The URI to execute theREFUNDtransaction.
-
setCreateUpdateTokenUri
public void setCreateUpdateTokenUri(String createUpdateTokenUri)
The URI to create/update the token.
-
setUpdateTokenUri
public void setUpdateTokenUri(String updateTokenUri)
The URI to update the token.
-
setDeleteTokenUri
public void setDeleteTokenUri(String deleteTokenUri)
The URI to delete the token.
-
setInitiateWalletPaymentUri
public void setInitiateWalletPaymentUri(String initiateWalletPaymentUri)
The URI to initiate a wallet payment using Google Pay or Apple Pay.
-
-