Package com.hybris.cis.client.tax.models
Class CisTaxLine
- java.lang.Object
-
- com.hybris.cis.client.tax.models.CisTaxLine
-
public class CisTaxLine extends java.lang.ObjectA tax line containing tax details.
-
-
Constructor Summary
Constructors Constructor Description CisTaxLine()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetId()Gets the id.java.math.RoundingModegetRoundingMode()java.util.List<CisTaxValue>getTaxValues()Gets the tax values.java.math.BigDecimalgetTotalTax()Gets the total tax.voidsetId(java.lang.String id)Sets the id.voidsetRoundingMode(java.math.RoundingMode roundingMode)voidsetTaxValues(java.util.List<CisTaxValue> taxValues)Sets the tax values.voidsetTotalTax(java.math.BigDecimal totalTax)Sets the total tax.
-
-
-
Method Detail
-
getTaxValues
public java.util.List<CisTaxValue> getTaxValues()
Gets the tax values.- Returns:
- the taxValues
-
setTaxValues
public void setTaxValues(java.util.List<CisTaxValue> taxValues)
Sets the tax values.- Parameters:
taxValues- the taxValues to set
-
getTotalTax
public java.math.BigDecimal getTotalTax()
Gets the total tax.- Returns:
- the value
-
setTotalTax
public void setTotalTax(java.math.BigDecimal totalTax)
Sets the total tax.- Parameters:
totalTax- the value to set
-
getId
public java.lang.String getId()
Gets the id.- Returns:
- the id
-
setId
public void setId(java.lang.String id)
Sets the id.- Parameters:
id- the id to set
-
getRoundingMode
public java.math.RoundingMode getRoundingMode()
-
setRoundingMode
public void setRoundingMode(java.math.RoundingMode roundingMode)
-
-