Class ExternalCustomerProperties
- java.lang.Object
-
- com.broadleafcommerce.cartoperation.service.provider.external.ExternalCustomerProperties
-
@ConfigurationProperties("broadleaf.cartoperation.customerprovider") public class ExternalCustomerProperties extends Object
-
-
Constructor Summary
Constructors Constructor Description ExternalCustomerProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetReadAccountByIdPath()The path to read an account by ID.StringgetReadCustomerByIdPath()The path to read a customer by IDStringgetServiceClient()The service client to use when calling inventory services.StringgetUrl()The base url for the customer service.voidsetReadAccountByIdPath(String readAccountByIdPath)The path to read an account by ID.voidsetReadCustomerByIdPath(String readCustomerByIdPath)The path to read a customer by IDvoidsetServiceClient(String serviceClient)The service client to use when calling inventory services.voidsetUrl(String url)The base url for the customer service.
-
-
-
Method Detail
-
getUrl
public String getUrl()
The base url for the customer service.
-
getReadAccountByIdPath
public String getReadAccountByIdPath()
The path to read an account by ID.
-
getReadCustomerByIdPath
public String getReadCustomerByIdPath()
The path to read a customer by ID
-
getServiceClient
public String getServiceClient()
The service client to use when calling inventory services. Default is "cartopsclient".
-
setUrl
public void setUrl(String url)
The base url for the customer service.
-
setReadAccountByIdPath
public void setReadAccountByIdPath(String readAccountByIdPath)
The path to read an account by ID.
-
setReadCustomerByIdPath
public void setReadCustomerByIdPath(String readCustomerByIdPath)
The path to read a customer by ID
-
setServiceClient
public void setServiceClient(String serviceClient)
The service client to use when calling inventory services. Default is "cartopsclient".
-
-