Class ExternalPricingProperties
- java.lang.Object
-
- com.broadleafcommerce.cartoperation.service.provider.external.ExternalPricingProperties
-
@ConfigurationProperties("broadleaf.cartoperation.pricingprovider") public class ExternalPricingProperties extends Object
-
-
Constructor Summary
Constructors Constructor Description ExternalPricingProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPriceInfosUri()The URI path for pricing items.StringgetServiceClient()The service client to use when calling pricing services.StringgetUrl()The base url for an external cart service.voidsetPriceInfosUri(String priceInfosUri)The URI path for pricing items.voidsetServiceClient(String serviceClient)The service client to use when calling pricing services.voidsetUrl(String url)The base url for an external cart service.
-
-
-
Method Detail
-
getUrl
public String getUrl()
The base url for an external cart service.
-
getPriceInfosUri
public String getPriceInfosUri()
The URI path for pricing items.
-
getServiceClient
public String getServiceClient()
The service client to use when calling pricing services. Default is "cartopsclient".
-
setUrl
public void setUrl(String url)
The base url for an external cart service.
-
setPriceInfosUri
public void setPriceInfosUri(String priceInfosUri)
The URI path for pricing items.
-
setServiceClient
public void setServiceClient(String serviceClient)
The service client to use when calling pricing services. Default is "cartopsclient".
-
-