Class ExternalCreditAccountProperties
- java.lang.Object
-
- com.broadleafcommerce.cartoperation.service.provider.external.payments.ExternalCreditAccountProperties
-
@ConfigurationProperties("broadleaf.cartoperation.creditaccountprovider") public class ExternalCreditAccountProperties extends ObjectProperties for interacting with an external credit account service.- Author:
- Dima Myroniuk (dmyroniuk)
-
-
Constructor Summary
Constructors Constructor Description ExternalCreditAccountProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCustomerStoreCreditAccountsUri()The default URI to read the customer store credit account.StringgetServiceClient()The service client to use when calling credit account services.StringgetUrl()The base url for an external credit account service.voidsetCustomerStoreCreditAccountsUri(String customerStoreCreditAccountsUri)The default URI to read the customer store credit account.voidsetServiceClient(String serviceClient)The service client to use when calling credit account services.voidsetUrl(String url)The base url for an external credit account service.
-
-
-
Method Detail
-
getUrl
public String getUrl()
The base url for an external credit account service.
-
getCustomerStoreCreditAccountsUri
public String getCustomerStoreCreditAccountsUri()
The default URI to read the customer store credit account.
-
getServiceClient
public String getServiceClient()
The service client to use when calling credit account services. Default is "cartopsclient".
-
setUrl
public void setUrl(String url)
The base url for an external credit account service.
-
setCustomerStoreCreditAccountsUri
public void setCustomerStoreCreditAccountsUri(String customerStoreCreditAccountsUri)
The default URI to read the customer store credit account.
-
setServiceClient
public void setServiceClient(String serviceClient)
The service client to use when calling credit account services. Default is "cartopsclient".
-
-