Package de.hybris.platform.order.daos
Interface TaxDao
- All Known Implementing Classes:
DefaultTaxDao
public interface TaxDao
-
Method Summary
Modifier and TypeMethodDescriptionfindTaxesByCode(String code) Finds theTaxModels with the specified code.findTaxesByCodePattern(String code) Finds allTaxModels which match the specified code.
-
Method Details
-
findTaxesByCode
Finds theTaxModels with the specified code.- Parameters:
code- the tax code- Returns:
- the List of found
TaxModels ordered by creation time.
-
findTaxesByCodePattern
Finds allTaxModels which match the specified code.- Parameters:
code- an SQL-Like statement as String, such as %taxCode%- Returns:
- the
Listof allTaxModels which match the specified code
-