Interface TmaProductSpecificationDao
- All Superinterfaces:
GenericSearchDao<TmaProductSpecificationModel>
- All Known Implementing Classes:
DefaultTmaProductSpecificationDao
Data Access object for operations related to the
TmaProductSpecificationModel.- Since:
- 2202
-
Method Summary
Modifier and TypeMethodDescriptionRetrieves the productSpecCharacteristics that have corresponding name.findProductSpecCharacteristicByName(String name, CatalogVersionModel catalogVersion) Retrieves the productSpecCharacteristics that have corresponding name and catalogVersion.getNumberOfProductSpecification(TmaProductSpecificationContextData productSpecificationContextData) Retrieves the the number of productSpecification that exist.getProductSpecifications(TmaProductSpecificationContextData productSpecificationContextData, Integer offset, Integer limit) Retrieves a list ofTmaProductSpecificationModelfiltered by the context .Methods inherited from interface de.hybris.platform.b2ctelcoservices.daos.GenericSearchDao
findUnique
-
Method Details
-
getProductSpecifications
List<TmaProductSpecificationModel> getProductSpecifications(TmaProductSpecificationContextData productSpecificationContextData, Integer offset, Integer limit) Retrieves a list ofTmaProductSpecificationModelfiltered by the context .- Parameters:
productSpecificationContextData- the context.offset- the offset.limit- the maximum number of returned productSpecifications.- Returns:
- the list of productSpecifications found for the given offset and limit.
-
getNumberOfProductSpecification
Integer getNumberOfProductSpecification(TmaProductSpecificationContextData productSpecificationContextData) Retrieves the the number of productSpecification that exist.- Parameters:
productSpecificationContextData- the context.- Returns:
- the number of all found
TmaProductSpecificationModel
-
findProductSpecCharacteristicByName
List<TmaProductSpecCharacteristicModel> findProductSpecCharacteristicByName(String name, CatalogVersionModel catalogVersion) Retrieves the productSpecCharacteristics that have corresponding name and catalogVersion.- Parameters:
name- the name of the ProductSpecCharacteristiccatalogVersion- for which the productSpecCharacteristics will be retrieved- Returns:
- List of
TmaProductSpecCharacteristicModel
-
findProductSpecCharacteristicByName
Retrieves the productSpecCharacteristics that have corresponding name.- Parameters:
name- the name of the ProductSpecCharacteristic- Returns:
- List of
TmaProductSpecCharacteristicModel
-