Package de.hybris.platform.order.daos
Interface DeliveryModeDao
-
- All Known Implementing Classes:
DefaultDeliveryModeDao
public interface DeliveryModeDao
TheDeliveryModeModel
DAO.- Spring Bean ID:
- deliveryModeDao
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<DeliveryModeModel>
findAllDeliveryModes()
Finds allDeliveryModeModel
s.java.util.Collection<DeliveryModeModel>
findDeliveryModeByPaymentMode(PaymentModeModel paymentMode)
Finds allDeliveryModeModel
s supported by givenPaymentModeModel
.java.util.List<DeliveryModeModel>
findDeliveryModesByCode(java.lang.String code)
Finds theDeliveryModeModel
s with the specified code.
-
-
-
Method Detail
-
findDeliveryModesByCode
java.util.List<DeliveryModeModel> findDeliveryModesByCode(java.lang.String code)
Finds theDeliveryModeModel
s with the specified code.- Parameters:
code
- the delivery mode code- Returns:
- the found
DeliveryModeModel
s with the specified code, or empty list if not found.
-
findAllDeliveryModes
java.util.Collection<DeliveryModeModel> findAllDeliveryModes()
Finds allDeliveryModeModel
s.- Returns:
- a
Collection
of allDeliveryModeModel
s, or empty list if not found.
-
findDeliveryModeByPaymentMode
java.util.Collection<DeliveryModeModel> findDeliveryModeByPaymentMode(PaymentModeModel paymentMode)
Finds allDeliveryModeModel
s supported by givenPaymentModeModel
.- Parameters:
paymentMode
- the payment mode- Returns:
- a
Collection
of supportedDeliveryModeModel
s, or empty list if not found.
-
-