Package com.broadleafcommerce.tax.domain
Class CommitTaxResponse
- java.lang.Object
-
- com.broadleafcommerce.tax.domain.CommitTaxResponse
-
- All Implemented Interfaces:
Serializable
public class CommitTaxResponse extends Object implements Serializable
Encapsulated response indicating that a tax transaction was committed.- Author:
- Kelly Tisdell (ktisdell)
- See Also:
CommitTaxRequest
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CommitTaxResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
boolean
equals(Object o)
Map<String,Object>
getInternalAttributes()
Any internal attributes that may need to be used for later tax operations.String
getTaxProviderId()
Represents theTaxProvider
that was used to respond to a correspondingCommitTaxRequest
.int
hashCode()
void
setInternalAttributes(Map<String,Object> internalAttributes)
Any internal attributes that may need to be used for later tax operations.void
setTaxProviderId(String taxProviderId)
Represents theTaxProvider
that was used to respond to a correspondingCommitTaxRequest
.String
toString()
-
-
-
Method Detail
-
getTaxProviderId
public String getTaxProviderId()
Represents theTaxProvider
that was used to respond to a correspondingCommitTaxRequest
.
-
getInternalAttributes
public Map<String,Object> getInternalAttributes()
Any internal attributes that may need to be used for later tax operations. Any values set here will be saved in the order's internal attributes field.
-
setTaxProviderId
public void setTaxProviderId(String taxProviderId)
Represents theTaxProvider
that was used to respond to a correspondingCommitTaxRequest
.
-
setInternalAttributes
public void setInternalAttributes(Map<String,Object> internalAttributes)
Any internal attributes that may need to be used for later tax operations. Any values set here will be saved in the order's internal attributes field.
-
canEqual
protected boolean canEqual(Object other)
-
-