Class CisTaxLine


  • public class CisTaxLine
    extends java.lang.Object
    A 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.String getId()
      Gets the id.
      java.math.RoundingMode getRoundingMode()  
      java.util.List<CisTaxValue> getTaxValues()
      Gets the tax values.
      java.math.BigDecimal getTotalTax()
      Gets the total tax.
      void setId​(java.lang.String id)
      Sets the id.
      void setRoundingMode​(java.math.RoundingMode roundingMode)  
      void setTaxValues​(java.util.List<CisTaxValue> taxValues)
      Sets the tax values.
      void setTotalTax​(java.math.BigDecimal totalTax)
      Sets the total tax.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CisTaxLine

        public CisTaxLine()
    • 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)