Uses of Class
com.atlassian.confluence.mail.notification.Notification

Packages that use Notification
com.atlassian.confluence.event.events.content.mail.notification   
com.atlassian.confluence.mail.notification   
com.atlassian.confluence.mail.notification.listeners   
com.atlassian.confluence.mail.notification.persistence   
com.atlassian.confluence.mail.notification.persistence.dao.hibernate   
 

Uses of Notification in com.atlassian.confluence.event.events.content.mail.notification
 

Fields in com.atlassian.confluence.event.events.content.mail.notification declared as Notification
protected  Notification NotificationEvent.notification
           
 

Methods in com.atlassian.confluence.event.events.content.mail.notification that return Notification
 Notification NotificationEvent.getNotification()
           
 

Constructors in com.atlassian.confluence.event.events.content.mail.notification with parameters of type Notification
ContentNotificationAddedEvent(Object src, Notification notification)
           
ContentNotificationEvent(Object src, Notification notification)
           
ContentNotificationRemovedEvent(Object src, Notification notification)
           
NotificationEvent(Object src, Notification notification)
           
SiteNotificationAddedEvent(Object src, Notification notification)
           
SiteNotificationEvent(Object src, Notification notification)
           
SiteNotificationRemovedEvent(Object src, Notification notification)
           
SpaceNotificationAddedEvent(Object src, Notification notification)
           
SpaceNotificationEvent(Object src, Notification notification)
           
SpaceNotificationRemovedEvent(Object src, Notification notification)
           
 

Uses of Notification in com.atlassian.confluence.mail.notification
 

Methods in com.atlassian.confluence.mail.notification that return Notification
 Notification NotificationManager.addDailyReportNotfication(com.atlassian.user.User user)
           
 Notification DefaultNotificationManager.addDailyReportNotfication(com.atlassian.user.User user)
           
protected  Notification DefaultNotificationManager.addNotification(com.atlassian.user.User user, Space space, AbstractPage page)
           
 Notification NotificationManager.addPageNotification(com.atlassian.user.User user, AbstractPage page)
           
 Notification DefaultNotificationManager.addPageNotification(com.atlassian.user.User user, AbstractPage page)
           
 Notification NotificationManager.addSpaceNotification(com.atlassian.user.User user, Space space)
           
 Notification DefaultNotificationManager.addSpaceNotification(com.atlassian.user.User user, Space space)
           
 Notification NotificationManager.getDailyReportNotificationForUser(com.atlassian.user.User user)
           
 Notification DefaultNotificationManager.getDailyReportNotificationForUser(com.atlassian.user.User user)
           
 Notification NotificationManager.getNetworkNotificationForUser(com.atlassian.user.User user)
           
 Notification DefaultNotificationManager.getNetworkNotificationForUser(com.atlassian.user.User user)
           
 Notification NotificationManager.getNotificationByUserAndPage(com.atlassian.user.User user, AbstractPage page)
           
 Notification DefaultNotificationManager.getNotificationByUserAndPage(com.atlassian.user.User user, AbstractPage page)
           
 Notification NotificationManager.getNotificationByUserAndSpace(com.atlassian.user.User user, String spaceKey)
           
 Notification DefaultNotificationManager.getNotificationByUserAndSpace(com.atlassian.user.User user, String spaceKey)
           
 Notification NotificationManager.getSiteBlogNotificationForUser(com.atlassian.user.User user)
           
 Notification DefaultNotificationManager.getSiteBlogNotificationForUser(com.atlassian.user.User user)
           
 

Methods in com.atlassian.confluence.mail.notification that return types with arguments of type Notification
 List<Notification> NotificationManager.findNotificationsByFollowing(com.atlassian.user.User modifier)
          Retrieves the list of Network Notifications for Users who are following the given User.
 List<Notification> DefaultNotificationManager.findNotificationsByFollowing(com.atlassian.user.User modifier)
           
 List<Notification> NotificationManager.getDailyReportNotifications()
           
 List<Notification> DefaultNotificationManager.getDailyReportNotifications()
           
 List<Notification> NotificationManager.getNotificationsByPage(AbstractPage page)
           
 List<Notification> DefaultNotificationManager.getNotificationsByPage(AbstractPage page)
           
 List<Notification> NotificationManager.getNotificationsBySpace(Space space)
           
 List<Notification> DefaultNotificationManager.getNotificationsBySpace(Space space)
           
 List<Notification> NotificationManager.getNotificationsByUser(com.atlassian.user.User user)
           
 List<Notification> DefaultNotificationManager.getNotificationsByUser(com.atlassian.user.User user)
           
 List<Notification> NotificationManager.getSiteBlogNotifications()
           
 List<Notification> DefaultNotificationManager.getSiteBlogNotifications()
           
 

Methods in com.atlassian.confluence.mail.notification with parameters of type Notification
 void NotificationCaseFixer.fix(Notification notification)
           
 void NotificationManager.removeNotification(Notification notification)
           
 void DefaultNotificationManager.removeNotification(Notification notification)
           
 

Uses of Notification in com.atlassian.confluence.mail.notification.listeners
 

Methods in com.atlassian.confluence.mail.notification.listeners with parameters of type Notification
protected  void AbstractNotificationsListener.sendNotification(Notification notification, NotificationData notificationData)
          Sends a notification.
 

Method parameters in com.atlassian.confluence.mail.notification.listeners with type arguments of type Notification
protected  void AbstractNotificationsListener.sendNotifications(List<Notification> spaceNotifications, NotificationData notificationData)
          Sends the notificationData to each user listed in spaceNotifications, as long as they are permitted to see it.
 

Uses of Notification in com.atlassian.confluence.mail.notification.persistence
 

Methods in com.atlassian.confluence.mail.notification.persistence that return Notification
 Notification NotificationDao.findDailyReportNotification(String username)
          Find the specified user's daily report notification.
 Notification NotificationDao.findGlobalBlogWatchForUser(com.atlassian.user.User user)
          Find the global blog notification for this user if they have one.
 Notification NotificationDao.findNetworkNotificationByUser(com.atlassian.user.User user)
          Find the Network notification for this user if they have one.
 Notification NotificationDao.findNotificationByUserAndPage(com.atlassian.user.User user, AbstractPage page)
           
 Notification NotificationDao.findNotificationByUserAndSpace(com.atlassian.user.User user, String spaceKey)
           
 

Methods in com.atlassian.confluence.mail.notification.persistence that return types with arguments of type Notification
 List<Notification> NotificationDao.findAllDailyReportNotifications()
          Find all daily report notifications.
 List<Notification> NotificationDao.findAllNotificationsByUser(com.atlassian.user.User user)
          Find all notifications owned by the specified user, including digest etc.
 List<Notification> NotificationDao.findNotificationsByFollowing(com.atlassian.user.User user)
           
 List<Notification> NotificationDao.findNotificationsByPage(AbstractPage Page)
          Find the notifications linked to the specified content.
 List<Notification> NotificationDao.findNotificationsBySpace(Space space)
          Find the notifications links to the specified space.
 List<Notification> NotificationDao.findNotificationsByUser(com.atlassian.user.User user)
          Find the space and page notifications owned by the specified user.
 List<Notification> NotificationDao.findSiteBlogNotifications()
          Find the global blog notification for all users.
 

Uses of Notification in com.atlassian.confluence.mail.notification.persistence.dao.hibernate
 

Methods in com.atlassian.confluence.mail.notification.persistence.dao.hibernate that return Notification
 Notification HibernateNotificationDao.findDailyReportNotification(String username)
           
 Notification HibernateNotificationDao.findGlobalBlogWatchForUser(com.atlassian.user.User user)
          Find the global blog notification for this user if they have one.
 Notification HibernateNotificationDao.findNetworkNotificationByUser(com.atlassian.user.User user)
          Find the Network notification for this user if they have one.
 Notification HibernateNotificationDao.findNotificationByUserAndPage(com.atlassian.user.User user, AbstractPage page)
           
 Notification HibernateNotificationDao.findNotificationByUserAndSpace(com.atlassian.user.User user, String spaceKey)
           
 

Methods in com.atlassian.confluence.mail.notification.persistence.dao.hibernate that return types with arguments of type Notification
 List<Notification> HibernateNotificationDao.findAllDailyReportNotifications()
           
 List<Notification> HibernateNotificationDao.findAllNotificationsByUser(com.atlassian.user.User user)
           
 List<Notification> HibernateNotificationDao.findNotificationsByFollowing(com.atlassian.user.User user)
           
 List<Notification> HibernateNotificationDao.findNotificationsByPage(AbstractPage page)
           
 List<Notification> HibernateNotificationDao.findNotificationsBySpace(Space space)
           
 List<Notification> HibernateNotificationDao.findNotificationsByUser(com.atlassian.user.User user)
           
 List<Notification> HibernateNotificationDao.findSiteBlogNotifications()
           
 



Copyright © 2003-2011 Atlassian. All Rights Reserved.