Interface CatalogProvider<T1 extends ComprehensiveProduct,T2 extends Variant>

All Known Implementing Classes:
ExternalCatalogProvider

public interface CatalogProvider<T1 extends ComprehensiveProduct,T2 extends Variant>
Interface for interacting with catalog data, typically by making remote calls.
Author:
Kelly Tisdell (ktisdell)
  • Method Details

    • readProducts

      ProductList<T1> readProducts(List<T1> requestedProducts, BatchContext<?> batchContext)
      Fetches a list of Products based on externalId, SKU, or URI. This is to find existing products for update.
      Parameters:
      requestedProducts -
      batchContext -
      Returns:
    • readProducts

      ProductList<T1> readProducts(@Nullable org.springframework.util.MultiValueMap<String,String> params, @Nullable BatchContext<?> context)
    • readProductById

      T1 readProductById(String productId, BatchContext<?> batchContext)
    • createProduct

      T1 createProduct(T1 product, BatchContext<?> batchContext)
    • updateProduct

      T1 updateProduct(T1 product, BatchContext<?> batchContext)
    • readVariantById

      T2 readVariantById(String productId, String variantId, BatchContext<?> batchContext)
    • readVariant

      T2 readVariant(String productId, String variantId, BatchContext<?> context)
    • deleteVariant

      void deleteVariant(String productId, String variantId, BatchContext<?> context)
    • saveProductTranslations

      List<Translation> saveProductTranslations(T1 product, Locale locale, List<Translation> translations, BatchContext<?> batchContext)
      Saves translations, specifically for a Product.
      Parameters:
      product - the product for which to save translations
      locale - the locale for the translations - must be the same for all
      translations - the list of translations
      batchContext - the batch context including the ContextInfo
      Returns:
      the list of translations
    • readVariants

      List<T2> readVariants(List<T1> products, BatchContext<?> batchContext)
    • readVariantsForProduct

      List<T2> readVariantsForProduct(T1 products, BatchContext<?> batchContext)
    • createVariant

      T2 createVariant(T1 product, T2 variant, BatchContext<?> batchContext)
    • updateVariant

      T2 updateVariant(T1 product, T2 variant, BatchContext<?> batchContext)
    • saveVariantTranslations

      List<Translation> saveVariantTranslations(T1 product, T2 variant, Locale locale, List<Translation> translations, BatchContext<?> batchContext)