Class ExternalPaymentProperties
- java.lang.Object
-
- com.broadleafcommerce.customer.service.provider.external.ExternalPaymentProperties
-
@ConfigurationProperties("broadleaf.customer.paymentprovider") @Deprecated(since="1.7.2", forRemoval=true) public class ExternalPaymentProperties extends Object
Deprecated, for removal: This API element is subject to removal in a future version.since 1.7.2, in favor of using PaymentTransactionServices as saved payment method storage location.Properties for interacting with an external payment transaction service.- Author:
- Chris Kittrell (ckittrell)
-
-
Constructor Summary
Constructors Constructor Description ExternalPaymentProperties()
Deprecated, for removal: This API element is subject to removal in a future version.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
getSensitivePaymentsUri()
Deprecated, for removal: This API element is subject to removal in a future version.The URI path for reading payments, including sensitive data.String
getServiceClient()
Deprecated, for removal: This API element is subject to removal in a future version.The service client to use when calling payment transaction services.String
getUrl()
Deprecated, for removal: This API element is subject to removal in a future version.The base url for an external payment transaction service.void
setSensitivePaymentsUri(String sensitivePaymentsUri)
Deprecated, for removal: This API element is subject to removal in a future version.The URI path for reading payments, including sensitive data.void
setServiceClient(String serviceClient)
Deprecated, for removal: This API element is subject to removal in a future version.The service client to use when calling payment transaction services.void
setUrl(String url)
Deprecated, for removal: This API element is subject to removal in a future version.The base url for an external payment transaction service.
-
-
-
Method Detail
-
getUrl
public String getUrl()
Deprecated, for removal: This API element is subject to removal in a future version.The base url for an external payment transaction service.
-
getSensitivePaymentsUri
public String getSensitivePaymentsUri()
Deprecated, for removal: This API element is subject to removal in a future version.The URI path for reading payments, including sensitive data.
-
getServiceClient
public String getServiceClient()
Deprecated, for removal: This API element is subject to removal in a future version.The service client to use when calling payment transaction services. Default is "cartopsclient".
-
setUrl
public void setUrl(String url)
Deprecated, for removal: This API element is subject to removal in a future version.The base url for an external payment transaction service.
-
setSensitivePaymentsUri
public void setSensitivePaymentsUri(String sensitivePaymentsUri)
Deprecated, for removal: This API element is subject to removal in a future version.The URI path for reading payments, including sensitive data.
-
setServiceClient
public void setServiceClient(String serviceClient)
Deprecated, for removal: This API element is subject to removal in a future version.The service client to use when calling payment transaction services. Default is "cartopsclient".
-
-