Interface RelatedProductsService

All Known Implementing Classes:
RelatedProductsServiceImpl

public interface RelatedProductsService
Interface for finding related products. Could be extended to support more complex related product functions.
Author:
bpolster
  • Method Details

    • findRelatedProducts

      List<? extends PromotableProduct> findRelatedProducts(RelatedProductDTO relatedProductDTO)
      Uses the data in the passed in DTO to return a list of relatedProducts.

      For example, upSale, crossSale, or featured products.

      Parameters:
      relatedProductDTO -
      Returns:
    • isFeaturedProduct

      boolean isFeaturedProduct(Long productId)