Interface B2BProductService
- All Known Implementing Classes:
DefaultB2BProductService
public interface B2BProductService
B2B specific product service interface.
-
Method Summary
Modifier and TypeMethodDescriptionfindProductsForSkus(Collection<String> skus, PageableData pageableData) Deprecated, for removal: This API element is subject to removal in a future version.Since 6.0.getProductsForSkus(Collection<String> skus, PageableData pageableData) Gets all visibleProductModelfor a given collection of skus.
-
Method Details
-
findProductsForSkus
@Deprecated(since="6.0", forRemoval=true) SearchPageData<ProductModel> findProductsForSkus(Collection<String> skus, PageableData pageableData) Deprecated, for removal: This API element is subject to removal in a future version.Since 6.0. UsegetProductsForSkus(Collection, PageableData)instead.Gets all visibleProductModelfor a given collection of skus.- Parameters:
skus- String collection of product idspageableData- Pagination information- Returns:
- List of paginated
ProductModelobjects
-
getProductsForSkus
Gets all visibleProductModelfor a given collection of skus.- Parameters:
skus- String collection of product idspageableData- Pagination information- Returns:
- List of paginated
ProductModelobjects - Since:
- 6.0
-