Class ExternalOfferProperties
- java.lang.Object
-
- com.broadleafcommerce.cartoperation.service.provider.external.ExternalOfferProperties
-
@ConfigurationProperties("broadleaf.cartoperation.offerprovider") public class ExternalOfferProperties extends Object
-
-
Constructor Summary
Constructors Constructor Description ExternalOfferProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetApplyUri()The URI path for applying offers.StringgetServiceClient()The service client to use when calling offer services.StringgetUrl()The base url for an external cart service.StringgetUseCodeUri()The URI path for using a code.StringgetValidateUri()The URI path for validating checkout.voidsetApplyUri(String applyUri)The URI path for applying offers.voidsetServiceClient(String serviceClient)The service client to use when calling offer services.voidsetUrl(String url)The base url for an external cart service.voidsetUseCodeUri(String useCodeUri)The URI path for using a code.voidsetValidateUri(String validateUri)The URI path for validating checkout.
-
-
-
Method Detail
-
getUrl
public String getUrl()
The base url for an external cart service.
-
getUseCodeUri
public String getUseCodeUri()
The URI path for using a code.
-
getValidateUri
public String getValidateUri()
The URI path for validating checkout.
-
getApplyUri
public String getApplyUri()
The URI path for applying offers.
-
getServiceClient
public String getServiceClient()
The service client to use when calling offer services. Default is "cartopsclient".
-
setUrl
public void setUrl(String url)
The base url for an external cart service.
-
setUseCodeUri
public void setUseCodeUri(String useCodeUri)
The URI path for using a code.
-
setValidateUri
public void setValidateUri(String validateUri)
The URI path for validating checkout.
-
setApplyUri
public void setApplyUri(String applyUri)
The URI path for applying offers.
-
setServiceClient
public void setServiceClient(String serviceClient)
The service client to use when calling offer services. Default is "cartopsclient".
-
-