Uses of Interface
com.elasticpath.domain.tax.TaxCode

Packages that use TaxCode
com.elasticpath.domain.catalog   
com.elasticpath.domain.catalog.impl   
com.elasticpath.domain.tax.impl   
com.elasticpath.service.tax   
com.elasticpath.service.tax.impl   
 

Uses of TaxCode in com.elasticpath.domain.catalog
 

Methods in com.elasticpath.domain.catalog that return TaxCode
 TaxCode ProductType.getTaxCode()
          Returns the TaxCode associated with this ProductType.
 TaxCode Product.getTaxCode()
          Returns the TaxCode associated with this ProductType.
 

Methods in com.elasticpath.domain.catalog with parameters of type TaxCode
 void ProductType.setTaxCode(TaxCode taxCode)
          Set the TaxCode associated with this ProductType.
 void Product.setTaxCode(TaxCode taxCode)
          Set the TaxCode associated with this ProductType.
 

Uses of TaxCode in com.elasticpath.domain.catalog.impl
 

Methods in com.elasticpath.domain.catalog.impl that return TaxCode
 TaxCode ProductTypeImpl.getTaxCode()
          Returns the TaxCode associated with this ProductType.
 TaxCode ProductImpl.getTaxCode()
          Returns the TaxCode associated with this Product.
 

Methods in com.elasticpath.domain.catalog.impl with parameters of type TaxCode
 void ProductTypeImpl.setTaxCode(TaxCode taxCode)
          Set the TaxCode associated with this ProductType.
 void ProductImpl.setTaxCode(TaxCode taxCode)
          Set the TaxCode associated with this Product.
 

Uses of TaxCode in com.elasticpath.domain.tax.impl
 

Classes in com.elasticpath.domain.tax.impl that implement TaxCode
 class TaxCodeImpl
          The default implementation of SalesTaxCode.
 

Uses of TaxCode in com.elasticpath.service.tax
 

Methods in com.elasticpath.service.tax that return TaxCode
 TaxCode TaxCodeService.add(TaxCode taxCode)
          Adds the given taxCode.
 TaxCode TaxCodeService.get(long taxCodeUid)
          Get the taxCode with the given UID.
 TaxCode TaxCodeService.load(long taxCodeUid)
          Load the taxCode with the given UID.
 

Methods in com.elasticpath.service.tax with parameters of type TaxCode
 TaxCode TaxCodeService.add(TaxCode taxCode)
          Adds the given taxCode.
 void TaxCodeService.remove(TaxCode taxCode)
          Delete the current taxCode and all its direct/indirect children.
 void TaxCodeService.update(TaxCode taxCode)
          Updates the given taxCode.
 

Uses of TaxCode in com.elasticpath.service.tax.impl
 

Methods in com.elasticpath.service.tax.impl that return TaxCode
 TaxCode TaxCodeServiceImpl.add(TaxCode taxCode)
          Adds the given taxCode.
 TaxCode TaxCodeServiceImpl.get(long taxCodeUid)
          Get the taxCode with the given UID.
 TaxCode TaxCodeServiceImpl.load(long taxCodeUid)
          Load the taxCode with the given UID.
 

Methods in com.elasticpath.service.tax.impl with parameters of type TaxCode
 TaxCode TaxCodeServiceImpl.add(TaxCode taxCode)
          Adds the given taxCode.
 void TaxCodeServiceImpl.remove(TaxCode taxCode)
          Delete the taxCode.
 void TaxCodeServiceImpl.update(TaxCode taxCode)
          Updates the given taxCode.