Package de.hybris.platform.order.daos
Interface DeliveryModeDao
-
- All Known Implementing Classes:
DefaultDeliveryModeDao
public interface DeliveryModeDaoTheDeliveryModeModelDAO.- Spring Bean ID:
- deliveryModeDao
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<DeliveryModeModel>findAllDeliveryModes()Finds allDeliveryModeModels.java.util.Collection<DeliveryModeModel>findDeliveryModeByPaymentMode(PaymentModeModel paymentMode)Finds allDeliveryModeModels supported by givenPaymentModeModel.java.util.List<DeliveryModeModel>findDeliveryModesByCode(java.lang.String code)Finds theDeliveryModeModels with the specified code.
-
-
-
Method Detail
-
findDeliveryModesByCode
java.util.List<DeliveryModeModel> findDeliveryModesByCode(java.lang.String code)
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
java.util.Collection<DeliveryModeModel> findAllDeliveryModes()
Finds allDeliveryModeModels.- Returns:
- a
Collectionof allDeliveryModeModels, or empty list if not found.
-
findDeliveryModeByPaymentMode
java.util.Collection<DeliveryModeModel> findDeliveryModeByPaymentMode(PaymentModeModel paymentMode)
Finds allDeliveryModeModels supported by givenPaymentModeModel.- Parameters:
paymentMode- the payment mode- Returns:
- a
Collectionof supportedDeliveryModeModels, or empty list if not found.
-
-