Interface CountryZoneDeliveryModeDao
-
- All Superinterfaces:
Dao
- All Known Subinterfaces:
C2LItemZoneDeliveryModeDao
- All Known Implementing Classes:
ChineseC2LItemZoneDeliveryModeDao,DefaultCountryZoneDeliveryModeDao
public interface CountryZoneDeliveryModeDao extends Dao
DAO to find zone delivery modes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.util.Collection<DeliveryModeModel>findDeliveryModes(AbstractOrderModel order)Find the delivery modes for the delivery country, currency, net flag and store.java.util.Collection<DeliveryModeModel>findDeliveryModesByCountryAndCurrency(CountryModel deliveryCountry, CurrencyModel currency, java.lang.Boolean net)Deprecated.Since 5.0.
-
-
-
Method Detail
-
findDeliveryModesByCountryAndCurrency
@Deprecated(since="5.0") java.util.Collection<DeliveryModeModel> findDeliveryModesByCountryAndCurrency(CountryModel deliveryCountry, CurrencyModel currency, java.lang.Boolean net)
Deprecated.Since 5.0. Use findDeliveryModes(AbstractOrderModel abstractOrder) instead.Find the delivery modes for the delivery country, currency and net flag.- Parameters:
deliveryCountry- the delivery countrycurrency- the cart currencynet- the net flag- Returns:
- the matching delivery modes
-
findDeliveryModes
java.util.Collection<DeliveryModeModel> findDeliveryModes(AbstractOrderModel order)
Find the delivery modes for the delivery country, currency, net flag and store.- Parameters:
order- the order with search parameters.- Returns:
- the matching delivery modes
-
-