Class DefaultTaxDao

java.lang.Object
de.hybris.platform.servicelayer.internal.dao.AbstractItemDao
de.hybris.platform.order.daos.impl.DefaultTaxDao
All Implemented Interfaces:
TaxDao, Dao

public class DefaultTaxDao extends AbstractItemDao implements TaxDao
Default implementation of the TaxDao.
  • Constructor Details

    • DefaultTaxDao

      public DefaultTaxDao()
  • Method Details

    • findTaxesByCode

      public List<TaxModel> findTaxesByCode(String code)
      Description copied from interface: TaxDao
      Finds the TaxModels with the specified code.
      Specified by:
      findTaxesByCode in interface TaxDao
      Parameters:
      code - the tax code
      Returns:
      the List of found TaxModels ordered by creation time.
    • findTaxesByCodePattern

      public List<TaxModel> findTaxesByCodePattern(String matchedCode)
      Description copied from interface: TaxDao
      Finds all TaxModels which match the specified code.
      Specified by:
      findTaxesByCodePattern in interface TaxDao
      Parameters:
      matchedCode - an SQL-Like statement as String, such as %taxCode%
      Returns:
      the List of all TaxModels which match the specified code