public interface NotificationDao
Modifier and Type | Method and Description |
---|---|
void |
deleteNotificationById(Long id) |
void |
deleteUserNotificationById(Long id) |
List<Notification> |
findAllNotifications() |
List<UserNotification> |
findAllUserNotificationsByDeviceId(String id) |
List<UserNotification> |
findAllUserNotificationsByPersonId(Long id) |
List<Notification> |
findAllValidNotifications(Date date) |
Notification |
findNotificationById(Long id) |
UserNotification |
findUserNotificationById(Long id) |
UserNotification |
findUserNotificationByNotificationId(Long id) |
Long |
saveNotification(Notification notification) |
Long |
saveUserNotification(UserNotification userNotification) |
Notification findNotificationById(Long id)
Long saveNotification(Notification notification)
void deleteNotificationById(Long id)
List<Notification> findAllNotifications()
List<Notification> findAllValidNotifications(Date date)
UserNotification findUserNotificationById(Long id)
UserNotification findUserNotificationByNotificationId(Long id)
Long saveUserNotification(UserNotification userNotification)
void deleteUserNotificationById(Long id)
List<UserNotification> findAllUserNotificationsByDeviceId(String id)
List<UserNotification> findAllUserNotificationsByPersonId(Long id)
Copyright © 2011-2013 The Kuali Foundation. All Rights Reserved.