Class DelegatingTaxServiceProperties
java.lang.Object
com.broadleafcommerce.cartoperation.service.pricing.DelegatingTaxServiceProperties
@ConfigurationProperties("broadleaf.cartoperation.delegatingtaxservice")
public class DelegatingTaxServiceProperties
extends Object
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Whether to populate the tax response payload on the cart.boolean
Whether to populate the tax response on the fulfillment groups.void
setPersistTaxResponseOnCart
(boolean persistTaxResponseOnCart) Whether to populate the tax response payload on the cart.void
setPersistTaxResponseOnFulfillments
(boolean persistTaxResponseOnFulfillments) Whether to populate the tax response on the fulfillment groups.
-
Constructor Details
-
DelegatingTaxServiceProperties
public DelegatingTaxServiceProperties()
-
-
Method Details
-
isPersistTaxResponseOnCart
public boolean isPersistTaxResponseOnCart()Whether to populate the tax response payload on the cart. Typically, this is only extra information not needed by downstream systems. Caution! This payload can be fairly large depending on tax provider, which may cause issues downstream with messages. Be sure the size is validated before setting to `true`. -
isPersistTaxResponseOnFulfillments
public boolean isPersistTaxResponseOnFulfillments()Whether to populate the tax response on the fulfillment groups. Typically, this is only extra * information not needed by downstream systems. Caution! This payload can be fairly large depending on tax provider, which may cause issues downstream with messages. Be sure the size is validated before setting to `true`. -
setPersistTaxResponseOnCart
public void setPersistTaxResponseOnCart(boolean persistTaxResponseOnCart) Whether to populate the tax response payload on the cart. Typically, this is only extra information not needed by downstream systems. Caution! This payload can be fairly large depending on tax provider, which may cause issues downstream with messages. Be sure the size is validated before setting to `true`. -
setPersistTaxResponseOnFulfillments
public void setPersistTaxResponseOnFulfillments(boolean persistTaxResponseOnFulfillments) Whether to populate the tax response on the fulfillment groups. Typically, this is only extra * information not needed by downstream systems. Caution! This payload can be fairly large depending on tax provider, which may cause issues downstream with messages. Be sure the size is validated before setting to `true`.
-