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

Packages that use TaxJurisdiction
com.elasticpath.domain.shoppingcart   
com.elasticpath.domain.shoppingcart.impl   
com.elasticpath.domain.tax   
com.elasticpath.domain.tax.impl   
com.elasticpath.service.tax   
com.elasticpath.service.tax.impl   
 

Uses of TaxJurisdiction in com.elasticpath.domain.shoppingcart
 

Methods in com.elasticpath.domain.shoppingcart with parameters of type TaxJurisdiction
 void ShoppingCart.setTaxJurisdiction(TaxJurisdiction taxJurisdiction)
          Set the most specific TaxJurisdiction based on the shippingAddress of this ShoppingCart.
 

Uses of TaxJurisdiction in com.elasticpath.domain.shoppingcart.impl
 

Methods in com.elasticpath.domain.shoppingcart.impl with parameters of type TaxJurisdiction
 void ShoppingCartImpl.setTaxJurisdiction(TaxJurisdiction taxJurisdiction)
          Set the most specific TaxJurisdiction based on the shippingAddress of this ShoppingCart.
 

Uses of TaxJurisdiction in com.elasticpath.domain.tax
 

Methods in com.elasticpath.domain.tax that return TaxJurisdiction
 TaxJurisdiction TaxJurisdiction.getParent()
          Get the parent taxJurisdiction of this taxJurisdiction.
 

Methods in com.elasticpath.domain.tax with parameters of type TaxJurisdiction
 boolean TaxJurisdiction.isParent(TaxJurisdiction taxJurisdiction)
          Check if this taxJurisdiction is the direct or indirect parent of the given taxJurisdiction.
 void TaxJurisdiction.setParent(TaxJurisdiction parent)
          Set the parent taxJurisdiction of this taxJurisdiction.
 

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

Classes in com.elasticpath.domain.tax.impl that implement TaxJurisdiction
 class TaxJurisdictionImpl
          A TaxJurisdiction represents a geographic area that has it's own distinct set of TaxCategorys and TaxValues ie a Country, a State, a City, a Municipal, or a County.
 

Methods in com.elasticpath.domain.tax.impl that return TaxJurisdiction
 TaxJurisdiction TaxJurisdictionImpl.getParent()
          Get the parent taxJurisdiction of this taxJurisdiction.
 

Methods in com.elasticpath.domain.tax.impl with parameters of type TaxJurisdiction
 boolean TaxJurisdictionImpl.isParent(TaxJurisdiction taxJurisdiction)
          Check if this taxJurisdiction is the direct or indirect parent of the given taxJurisdiction.
 void TaxJurisdictionImpl.setParent(TaxJurisdiction parent)
          Set the parent taxJurisdiction of this taxJurisdiction.
 

Uses of TaxJurisdiction in com.elasticpath.service.tax
 

Methods in com.elasticpath.service.tax that return TaxJurisdiction
 TaxJurisdiction TaxJurisdictionService.add(TaxJurisdiction taxJurisdiction)
          Adds the given taxJurisdiction.
 TaxJurisdiction TaxJurisdictionService.get(long taxJurisdictionUid)
          Get the taxJurisdiction with the given UID.
 TaxJurisdiction TaxJurisdictionService.load(long taxJurisdictionUid)
          Load the taxJurisdiction with the given UID.
 TaxJurisdiction TaxJurisdictionService.retrieveTaxJurisdiction(Address shippingAddress)
          Matches shipping address to lowest available Tax Jurisdiction level.
 

Methods in com.elasticpath.service.tax with parameters of type TaxJurisdiction
 TaxJurisdiction TaxJurisdictionService.add(TaxJurisdiction taxJurisdiction)
          Adds the given taxJurisdiction.
 java.util.List TaxJurisdictionService.getTaxJurisdictionChildren(TaxJurisdiction taxJurisdiction)
          Get all the child tax jurisidction belong to the given taxJurisdiction.
 void TaxJurisdictionService.remove(TaxJurisdiction taxJurisdiction)
          Delete the current taxJurisdiction and all its direct/indirect children.
 void TaxJurisdictionService.update(TaxJurisdiction taxJurisdiction)
          Updates the given taxJurisdiction.
 

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

Methods in com.elasticpath.service.tax.impl that return TaxJurisdiction
 TaxJurisdiction TaxJurisdictionServiceImpl.add(TaxJurisdiction taxJurisdiction)
          Adds the given taxJurisdiction.
 TaxJurisdiction TaxJurisdictionServiceImpl.get(long taxJurisdictionUid)
          Get the taxJurisdiction with the given UID.
 TaxJurisdiction TaxJurisdictionServiceImpl.load(long taxJurisdictionUid)
          Load the taxJurisdiction with the given UID.
 TaxJurisdiction TaxJurisdictionServiceImpl.retrieveTaxJurisdiction(Address address)
          Matches shipping address to the most specific matching Tax Jurisdiction level.
 

Methods in com.elasticpath.service.tax.impl with parameters of type TaxJurisdiction
 TaxJurisdiction TaxJurisdictionServiceImpl.add(TaxJurisdiction taxJurisdiction)
          Adds the given taxJurisdiction.
 java.util.List TaxJurisdictionServiceImpl.getTaxJurisdictionChildren(TaxJurisdiction taxJurisdiction)
          Get all the child tax jurisidction belong to the given taxJurisdiction.
 void TaxJurisdictionServiceImpl.remove(TaxJurisdiction taxJurisdiction)
          Delete the taxJurisdiction.
 void TaxJurisdictionServiceImpl.update(TaxJurisdiction taxJurisdiction)
          Updates the given taxJurisdiction.