Package com.broadleafcommerce.tax.domain
Class ReverseTaxTransactionRequest
- java.lang.Object
-
- com.broadleafcommerce.tax.domain.TaxCalculationRequest
-
- com.broadleafcommerce.tax.domain.ReverseTaxTransactionRequest
-
- All Implemented Interfaces:
Serializable
public class ReverseTaxTransactionRequest extends TaxCalculationRequest
Encapsulated request indicating that taxes that have been committed or saved should be reversed. This is not a refund, but rather marks the taxes as no longer owed in systems that provide tax reporting and remittance. This often accompanies a refund.- Author:
- Kelly Tisdell (ktisdell)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ReverseTaxTransactionRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
boolean
equals(Object o)
Instant
getOriginalTransactionDate()
The date of the original checkout or commit transaction.int
hashCode()
void
setOriginalTransactionDate(Instant originalTransactionDate)
The date of the original checkout or commit transaction.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
-
getOriginalTransactionDate
public Instant getOriginalTransactionDate()
The date of the original checkout or commit transaction.
-
setOriginalTransactionDate
public void setOriginalTransactionDate(Instant originalTransactionDate)
The date of the original checkout or commit transaction.
-
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
-
-