Package de.hybris.platform.order.daos
Interface DeliveryModeDao
- All Known Implementing Classes:
DefaultDeliveryModeDao
public interface DeliveryModeDao
The
DeliveryModeModel DAO.- Spring Bean ID:
- deliveryModeDao
-
Method Summary
Modifier and TypeMethodDescriptionFinds allDeliveryModeModels.findDeliveryModeByPaymentMode(PaymentModeModel paymentMode) Finds allDeliveryModeModels supported by givenPaymentModeModel.Finds theDeliveryModeModels with the specified code.
-
Method Details
-
findDeliveryModesByCode
Finds theDeliveryModeModels with the specified code.- Parameters:
code- the delivery mode code- Returns:
- the found
DeliveryModeModels with the specified code, or empty list if not found.
-
findAllDeliveryModes
Collection<DeliveryModeModel> findAllDeliveryModes()Finds allDeliveryModeModels.- Returns:
- a
Collectionof allDeliveryModeModels, or empty list if not found.
-
findDeliveryModeByPaymentMode
Finds allDeliveryModeModels supported by givenPaymentModeModel.- Parameters:
paymentMode- the payment mode- Returns:
- a
Collectionof supportedDeliveryModeModels, or empty list if not found.
-