Interface ProductsFeaturesDao

All Known Implementing Classes:
DefaultProductsFeaturesDao

public interface ProductsFeaturesDao
Data Access Object for looking up items related to ProductFeatureModel.
Spring Bean ID:
productsFeaturesDao
  • Method Summary

    Modifier and Type
    Method
    Description
    findProductsByVendorCompatibility(String manufacturerName, String classificationClassCode, String classificationAttributeCode)
    Returns list of compatible products based on the manufacturer name and classification details provided.
  • Method Details

    • findProductsByVendorCompatibility

      @Nonnull List<ProductModel> findProductsByVendorCompatibility(String manufacturerName, String classificationClassCode, String classificationAttributeCode)
      Returns list of compatible products based on the manufacturer name and classification details provided. The returned products have the given manufacturer name, belong to the same classification class, having the same classification attributes.
      Parameters:
      manufacturerName - name of the manufacturer of the products to be returned
      classificationClassCode - code of the classification class to which the products should belong
      classificationAttributeCode - code of the classification attribute of the class
      Returns:
      List of ProductModels which are considered compatible or empty List if no such products can be found.
      Since:
      6.6