Interface OrderEntryDao<O extends AbstractOrderModel,E extends AbstractOrderEntryModel>
-
- All Known Implementing Classes:
AbstractOrderEntryDao,DefaultCartEntryDao
@Deprecated(since="1905", forRemoval=true) public interface OrderEntryDao<O extends AbstractOrderModel,E extends AbstractOrderEntryModel>Deprecated, for removal: This API element is subject to removal in a future version.since 1905. Use entryGroupNumber instead of bundleNoData Access Object for looking up items related toAbstractOrderEntryModel.- Spring Bean ID:
- orderEntryDao
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.List<E>findEntriesByMasterCartAndBundleNo(O masterAbstractOrder, int bundleNo)Deprecated, for removal: This API element is subject to removal in a future version.java.util.List<E>findEntriesByMasterCartAndBundleNoAndProduct(O masterAbstractOrder, int bundleNo, ProductModel product)Deprecated, for removal: This API element is subject to removal in a future version.java.util.List<E>findEntriesByMasterCartAndBundleNoAndTemplate(O masterAbstractOrder, int bundleNo, BundleTemplateModel bundleTemplate)Deprecated, for removal: This API element is subject to removal in a future version.FindAbstractOrderEntryModels that match the givenmasterAbstractOrderandbundleNoandbundleTemplate
-
-
-
Method Detail
-
findEntriesByMasterCartAndBundleNo
@Nonnull java.util.List<E> findEntriesByMasterCartAndBundleNo(@Nonnull O masterAbstractOrder, int bundleNo)
Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
masterAbstractOrder- the master cart/order of theAbstractOrderEntryModel.bundleNo- the bundle number theAbstractOrderEntryModelbelongs to- Returns:
ListofAbstractOrderEntryModels or emptyList.
-
findEntriesByMasterCartAndBundleNoAndTemplate
@Nonnull java.util.List<E> findEntriesByMasterCartAndBundleNoAndTemplate(@Nonnull O masterAbstractOrder, int bundleNo, @Nonnull BundleTemplateModel bundleTemplate)
Deprecated, for removal: This API element is subject to removal in a future version.FindAbstractOrderEntryModels that match the givenmasterAbstractOrderandbundleNoandbundleTemplate- Parameters:
masterAbstractOrder- the master cart/order of theAbstractOrderEntryModel.bundleNo- the bundle number theAbstractOrderEntryModelbelongs tobundleTemplate- the bundle template based on which theAbstractOrderEntryModelwas added to the cart- Returns:
ListofAbstractOrderEntryModels or emptyList.
-
findEntriesByMasterCartAndBundleNoAndProduct
@Nonnull java.util.List<E> findEntriesByMasterCartAndBundleNoAndProduct(@Nonnull O masterAbstractOrder, int bundleNo, @Nonnull ProductModel product)
Deprecated, for removal: This API element is subject to removal in a future version.- Parameters:
masterAbstractOrder- the master cart/order of theAbstractOrderEntryModel.bundleNo- the bundle number theAbstractOrderEntryModelbelongs toproduct- the product in the cart abstract order entry- Returns:
ListofAbstractOrderEntryModels or emptyList.
-
-