Uses of Interface
com.elasticpath.domain.catalog.ProductAssociation

Packages that use ProductAssociation
com.elasticpath.domain.catalog   
com.elasticpath.domain.catalog.impl   
com.elasticpath.domain.shoppingcart   
com.elasticpath.domain.shoppingcart.impl   
com.elasticpath.service.catalog   
com.elasticpath.service.catalog.impl   
 

Uses of ProductAssociation in com.elasticpath.domain.catalog
 

Methods in com.elasticpath.domain.catalog that return ProductAssociation
 ProductAssociation Product.getAssociationById(long associationUid)
          Return the product association with the specified UID.
 

Methods in com.elasticpath.domain.catalog with parameters of type ProductAssociation
 void Product.addOrUpdateProductAssocation(ProductAssociation productAssociation)
          Add or update the given product association to this product(as a source product).
 

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

Classes in com.elasticpath.domain.catalog.impl that implement ProductAssociation
 class ProductAssociationImpl
          Represents a link between two products for the purpose of displaying information about related products when viewing a particular product.
 

Methods in com.elasticpath.domain.catalog.impl that return ProductAssociation
 ProductAssociation ProductImpl.getAssociationById(long associationUid)
          Return the product association with the specified UID.
 

Methods in com.elasticpath.domain.catalog.impl with parameters of type ProductAssociation
 void ProductImpl.addOrUpdateProductAssocation(ProductAssociation productAssociation)
          Add or update the given product association to this product(as a source product).
 

Uses of ProductAssociation in com.elasticpath.domain.shoppingcart
 

Methods in com.elasticpath.domain.shoppingcart with parameters of type ProductAssociation
 CartItem ShoppingCart.addAssociatedCartItem(ProductAssociation productAssociation, CartItem parentCartItem)
          Adds an item to the cart where the source of the item information is a ProductAssociation.
 

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

Methods in com.elasticpath.domain.shoppingcart.impl with parameters of type ProductAssociation
 CartItem ShoppingCartImpl.addAssociatedCartItem(ProductAssociation productAssociation, CartItem parentCartItem)
          Adds an item to the cart where the source of the item information is a ProductAssociation.
 

Uses of ProductAssociation in com.elasticpath.service.catalog
 

Methods in com.elasticpath.service.catalog that return ProductAssociation
 ProductAssociation ProductAssociationService.add(ProductAssociation productAssociation)
          Adds the given ProductAssociation.
 ProductAssociation ProductAssociationService.load(long productAssociationUid)
          Load the ProductAssociation with the given UID.
 

Methods in com.elasticpath.service.catalog with parameters of type ProductAssociation
 ProductAssociation ProductAssociationService.add(ProductAssociation productAssociation)
          Adds the given ProductAssociation.
 void ProductAssociationService.remove(ProductAssociation productAssociation)
          Delete the ProductAssociation.
 void ProductAssociationService.update(ProductAssociation productAssociation)
          Updates the given ProductAssociation.
 

Uses of ProductAssociation in com.elasticpath.service.catalog.impl
 

Methods in com.elasticpath.service.catalog.impl that return ProductAssociation
 ProductAssociation ProductAssociationServiceImpl.add(ProductAssociation productAssociation)
          Adds the given ProductAssociation.
 ProductAssociation ProductAssociationServiceImpl.load(long productAssociationUid)
          Load the ProductAssociation with the given UID.
 

Methods in com.elasticpath.service.catalog.impl with parameters of type ProductAssociation
 ProductAssociation ProductAssociationServiceImpl.add(ProductAssociation productAssociation)
          Adds the given ProductAssociation.
 void ProductAssociationServiceImpl.remove(ProductAssociation productAssociation)
          Delete the ProductAssociation.
 void ProductAssociationServiceImpl.update(ProductAssociation productAssociation)
          Updates the given ProductAssociation.