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 String
getPriceInfosUri()
The URI path for pricing items.String
getServiceClient()
The service client to use when calling pricing services.String
getUrl()
The base url for an external cart service.void
setPriceInfosUri(String priceInfosUri)
The URI path for pricing items.void
setServiceClient(String serviceClient)
The service client to use when calling pricing services.void
setUrl(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".
-
-