Interface NotificationDAO
-
- All Superinterfaces:
DAO<Notification>
- All Known Implementing Classes:
JPANotificationDAO
public interface NotificationDAO extends DAO<Notification>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
delete(String key)
Notification
find(String key)
List<Notification>
findAll()
List<Notification>
findByRecipientsProvider(Implementation recipientsProvider)
List<Notification>
findByTemplate(MailTemplate template)
Notification
save(Notification notification)
-
-
-
Method Detail
-
find
Notification find(String key)
-
findByTemplate
List<Notification> findByTemplate(MailTemplate template)
-
findByRecipientsProvider
List<Notification> findByRecipientsProvider(Implementation recipientsProvider)
-
findAll
List<Notification> findAll()
-
save
Notification save(Notification notification)
-
delete
void delete(String key)
-
-