Class DefaultCouponNotificationDao
- java.lang.Object
-
- de.hybris.platform.servicelayer.internal.dao.DefaultGenericDao<CouponNotificationModel>
-
- de.hybris.platform.customercouponservices.daos.impl.DefaultCouponNotificationDao
-
- All Implemented Interfaces:
CouponNotificationDao
,GenericDao<CouponNotificationModel>
public class DefaultCouponNotificationDao extends DefaultGenericDao<CouponNotificationModel> implements CouponNotificationDao
Default implementation ofCouponNotificationDao
-
-
Constructor Summary
Constructors Constructor Description DefaultCouponNotificationDao()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<CouponNotificationModel>
findCouponNotificationByCouponCode(java.lang.String couponCode)
Finds coupon notifications by coupon codejava.util.List<CouponNotificationModel>
findCouponNotificationsForCustomer(CustomerModel customer)
Finds coupon notifications for the customer-
Methods inherited from class de.hybris.platform.servicelayer.internal.dao.DefaultGenericDao
find, find, find, find, find, getFlexibleSearchService, setFlexibleSearchService
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.hybris.platform.customercouponservices.daos.CouponNotificationDao
findAllCouponNotifications
-
-
-
-
Method Detail
-
findCouponNotificationByCouponCode
public java.util.List<CouponNotificationModel> findCouponNotificationByCouponCode(java.lang.String couponCode)
Description copied from interface:CouponNotificationDao
Finds coupon notifications by coupon code- Specified by:
findCouponNotificationByCouponCode
in interfaceCouponNotificationDao
- Parameters:
couponCode
- the coupon code- Returns:
- the list of CouponNotificationModel
-
findCouponNotificationsForCustomer
public java.util.List<CouponNotificationModel> findCouponNotificationsForCustomer(CustomerModel customer)
Description copied from interface:CouponNotificationDao
Finds coupon notifications for the customer- Specified by:
findCouponNotificationsForCustomer
in interfaceCouponNotificationDao
- Parameters:
customer
- the customer model- Returns:
- the list of CouponNotificationModel
-
-