Class ExternalCatalogProperties
- java.lang.Object
-
- com.broadleafcommerce.cartoperation.service.provider.external.ExternalCatalogProperties
-
@ConfigurationProperties("broadleaf.cartoperation.catalogprovider") public class ExternalCatalogProperties extends Object
-
-
Constructor Summary
Constructors Constructor Description ExternalCatalogProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFieldMappingUri()
The URI path for cart item product mappings.String
getProductsUri()
The URI path for products.String
getServiceClient()
The service client to use for calling catalog.String
getUrl()
The base url for an external catalog service.void
setFieldMappingUri(String fieldMappingUri)
The URI path for cart item product mappings.void
setProductsUri(String productsUri)
The URI path for products.void
setServiceClient(String serviceClient)
The service client to use for calling catalog.void
setUrl(String url)
The base url for an external catalog service.
-
-
-
Method Detail
-
getUrl
public String getUrl()
The base url for an external catalog service.
-
getProductsUri
public String getProductsUri()
The URI path for products.
-
getFieldMappingUri
public String getFieldMappingUri()
The URI path for cart item product mappings.
-
getServiceClient
public String getServiceClient()
The service client to use for calling catalog. Default is "cartopsclient"
-
setUrl
public void setUrl(String url)
The base url for an external catalog service.
-
setProductsUri
public void setProductsUri(String productsUri)
The URI path for products.
-
setFieldMappingUri
public void setFieldMappingUri(String fieldMappingUri)
The URI path for cart item product mappings.
-
setServiceClient
public void setServiceClient(String serviceClient)
The service client to use for calling catalog. Default is "cartopsclient"
-
-