public interface DeliveryModeDao
DeliveryModeModel DAO.| Modifier and Type | Method and Description |
|---|---|
java.util.Collection<DeliveryModeModel> |
findAllDeliveryModes()
Finds all
DeliveryModeModels. |
java.util.Collection<DeliveryModeModel> |
findDeliveryModeByPaymentMode(PaymentModeModel paymentMode)
Finds all
DeliveryModeModels supported by given PaymentModeModel. |
java.util.List<DeliveryModeModel> |
findDeliveryModesByCode(java.lang.String code)
Finds the
DeliveryModeModels with the specified code. |
java.util.List<DeliveryModeModel> findDeliveryModesByCode(java.lang.String code)
DeliveryModeModels with the specified code.code - the delivery mode codeDeliveryModeModels with the specified code, or empty list if not found.java.util.Collection<DeliveryModeModel> findAllDeliveryModes()
DeliveryModeModels.Collection of all DeliveryModeModels, or empty list if not found.java.util.Collection<DeliveryModeModel> findDeliveryModeByPaymentMode(PaymentModeModel paymentMode)
DeliveryModeModels supported by given PaymentModeModel.paymentMode - the payment modeCollection of supported DeliveryModeModels, or empty list if not found.Copyright © 2018 SAP SE. All Rights Reserved.