Package de.hybris.platform.order.impl
Class DefaultPaymentModeService
- java.lang.Object
-
- de.hybris.platform.order.impl.DefaultPaymentModeService
-
- All Implemented Interfaces:
PaymentModeService
public class DefaultPaymentModeService extends java.lang.Object implements PaymentModeService
-
-
Constructor Summary
Constructors Constructor Description DefaultPaymentModeService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<PaymentModeModel>getAllPaymentModes()Gets all payment modesPaymentModeModelgetPaymentModeForCode(java.lang.String code)Gets thePaymentModeModelwith the specified code.voidsetPaymentModeDao(PaymentModeDao paymentModeDao)
-
-
-
Method Detail
-
setPaymentModeDao
public void setPaymentModeDao(PaymentModeDao paymentModeDao)
-
getPaymentModeForCode
public PaymentModeModel getPaymentModeForCode(java.lang.String code)
Description copied from interface:PaymentModeServiceGets thePaymentModeModelwith the specified code.- Specified by:
getPaymentModeForCodein interfacePaymentModeService- Parameters:
code- the code- Returns:
- the found list of
PaymentModeModelwith the specified code
-
getAllPaymentModes
public java.util.List<PaymentModeModel> getAllPaymentModes()
Description copied from interface:PaymentModeServiceGets all payment modes- Specified by:
getAllPaymentModesin interfacePaymentModeService
-
-