Class ExternalVerifoneProviderProperties
- java.lang.Object
-
- com.broadleafcommerce.payment.service.gateway.privider.ExternalVerifoneProviderProperties
-
@ConfigurationProperties("broadleaf.verifone.provider") public class ExternalVerifoneProviderProperties extends Object
The 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 String
getApiUrl()
The Verifone API URL.String
getCaptureAuthorizationUri()
The URI to execute theCAPTURE
transaction.String
getCreateUpdateTokenUri()
The URI to create/update the token.String
getDeleteTokenUri()
The URI to delete the token.String
getInitiatePaymentUri()
The URI to execute theAUTHORIZE
orAUTHORIZE_AND_CAPTURE
transaction.String
getInitiateWalletPaymentUri()
The URI to initiate a wallet payment using Google Pay or Apple Pay.String
getRefundPaymentUri()
The URI to execute theREFUND
transaction.String
getUpdateTokenUri()
The URI to update the token.String
getVoidAuthorizationUri()
The URI to execute theREVERSE_AUTH
transaction.String
getVoidCaptureUri()
The URI to execute theREFUND
transaction.void
init()
void
setApiUrl(String apiUrl)
The Verifone API URL.void
setCaptureAuthorizationUri(String captureAuthorizationUri)
The URI to execute theCAPTURE
transaction.void
setCreateUpdateTokenUri(String createUpdateTokenUri)
The URI to create/update the token.void
setDeleteTokenUri(String deleteTokenUri)
The URI to delete the token.void
setInitiatePaymentUri(String initiatePaymentUri)
The URI to execute theAUTHORIZE
orAUTHORIZE_AND_CAPTURE
transaction.void
setInitiateWalletPaymentUri(String initiateWalletPaymentUri)
The URI to initiate a wallet payment using Google Pay or Apple Pay.void
setRefundPaymentUri(String refundPaymentUri)
The URI to execute theREFUND
transaction.void
setUpdateTokenUri(String updateTokenUri)
The URI to update the token.void
setVoidAuthorizationUri(String voidAuthorizationUri)
The URI to execute theREVERSE_AUTH
transaction.void
setVoidCaptureUri(String voidCaptureUri)
The URI to execute theREFUND
transaction.
-
-
-
Method Detail
-
init
@PostConstruct public void init()
-
getApiUrl
public String getApiUrl()
The Verifone API URL.
-
getInitiatePaymentUri
public String getInitiatePaymentUri()
The URI to execute theAUTHORIZE
orAUTHORIZE_AND_CAPTURE
transaction.
-
getVoidAuthorizationUri
public String getVoidAuthorizationUri()
The URI to execute theREVERSE_AUTH
transaction.
-
getCaptureAuthorizationUri
public String getCaptureAuthorizationUri()
The URI to execute theCAPTURE
transaction.
-
getRefundPaymentUri
public String getRefundPaymentUri()
The URI to execute theREFUND
transaction.
-
getVoidCaptureUri
public String getVoidCaptureUri()
The URI to execute theREFUND
transaction.
-
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 theAUTHORIZE
orAUTHORIZE_AND_CAPTURE
transaction.
-
setVoidAuthorizationUri
public void setVoidAuthorizationUri(String voidAuthorizationUri)
The URI to execute theREVERSE_AUTH
transaction.
-
setCaptureAuthorizationUri
public void setCaptureAuthorizationUri(String captureAuthorizationUri)
The URI to execute theCAPTURE
transaction.
-
setRefundPaymentUri
public void setRefundPaymentUri(String refundPaymentUri)
The URI to execute theREFUND
transaction.
-
setVoidCaptureUri
public void setVoidCaptureUri(String voidCaptureUri)
The URI to execute theREFUND
transaction.
-
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.
-
-