Package com.broadleafcommerce.tax.domain
Class AdjustTaxTransactionRequest
- java.lang.Object
-
- com.broadleafcommerce.tax.domain.TaxCalculationRequest
-
- com.broadleafcommerce.tax.domain.AdjustTaxTransactionRequest
-
- All Implemented Interfaces:
Serializable
public class AdjustTaxTransactionRequest extends TaxCalculationRequest
Encapsulated request that indicates that a Tax transaction should be adjusted.- Author:
- Kelly Tisdell (ktisdell)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AdjustTaxTransactionRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)StringgetReason()The reason that this tax transaction is being adjusted.inthashCode()voidsetReason(String reason)The reason that this tax transaction is being adjusted.StringtoString()-
Methods inherited from class com.broadleafcommerce.tax.domain.TaxCalculationRequest
getAttributes, getCartId, getCurrency, getCustomer, getCustomerTaxExemptionCode, getProviderId, getTaxCalculationGroups, setAttributes, setCartId, setCurrency, setCustomer, setCustomerTaxExemptionCode, setProviderId, setTaxCalculationGroups
-
-
-
-
Method Detail
-
getReason
public String getReason()
The reason that this tax transaction is being adjusted.
-
setReason
public void setReason(String reason)
The reason that this tax transaction is being adjusted.
-
equals
public boolean equals(Object o)
- Overrides:
equalsin classTaxCalculationRequest
-
canEqual
protected boolean canEqual(Object other)
- Overrides:
canEqualin classTaxCalculationRequest
-
hashCode
public int hashCode()
- Overrides:
hashCodein classTaxCalculationRequest
-
toString
public String toString()
- Overrides:
toStringin classTaxCalculationRequest
-
-