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 bundleNo
Data Access Object for looking up items related to
AbstractOrderEntryModel.- Spring Bean ID:
- orderEntryDao
-
Method Summary
Modifier and TypeMethodDescriptionfindEntriesByMasterCartAndBundleNo(O masterAbstractOrder, int bundleNo) Deprecated, for removal: This API element is subject to removal in a future version.findEntriesByMasterCartAndBundleNoAndProduct(O masterAbstractOrder, int bundleNo, ProductModel product) Deprecated, for removal: This API element is subject to removal in a future version.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 Details
-
findEntriesByMasterCartAndBundleNo
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 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 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.
-