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 boolean
canEqual(Object other)
boolean
equals(Object o)
String
getReason()
The reason that this tax transaction is being adjusted.int
hashCode()
void
setReason(String reason)
The reason that this tax transaction is being adjusted.String
toString()
-
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:
equals
in classTaxCalculationRequest
-
canEqual
protected boolean canEqual(Object other)
- Overrides:
canEqual
in classTaxCalculationRequest
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classTaxCalculationRequest
-
toString
public String toString()
- Overrides:
toString
in classTaxCalculationRequest
-
-