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 TypeMethodDescriptionfindProductsByVendorCompatibility(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 returnedclassificationClassCode- code of the classification class to which the products should belongclassificationAttributeCode- code of the classification attribute of the class- Returns:
ListofProductModels which are considered compatible or emptyListif no such products can be found.- Since:
- 6.6
-