Package | Description |
---|---|
org.itracker.model |
All entity classes are POJO beans.
|
org.itracker.model.util |
This package contains code for what?
|
org.itracker.persistence.dao |
This package contains all Data Access Object (XxxDAO) interfaces
along with their Hibernate implementations (XxxDAOImpl).
|
org.itracker.services |
Service Interfaces
|
org.itracker.services.implementations |
This package contains XXXService interface implementations,
named XXXServiceImpl by convention.
|
Modifier and Type | Field | Description |
---|---|---|
static Comparator<Notification> |
Notification.ISSUE_USER_ROLE_COMPARATOR |
|
static Comparator<Notification> |
Notification.TYPE_COMPARATOR |
|
static Comparator<Notification> |
Notification.USER_COMPARATOR |
Modifier and Type | Method | Description |
---|---|---|
List<Notification> |
Issue.getNotifications() |
Modifier and Type | Method | Description |
---|---|---|
int |
Notification.IssueUserRoleComparator.compare(Notification o1,
Notification o2) |
Modifier and Type | Method | Description |
---|---|---|
void |
Issue.setNotifications(List<Notification> notifications) |
Modifier and Type | Method | Description |
---|---|---|
static Map<User,Set<Notification.Role>> |
NotificationUtilities.mappedRoles(List<Notification> notifications) |
Modifier and Type | Method | Description |
---|---|---|
Notification |
NotificationDAO.findById(Integer id) |
|
Notification |
NotificationDAOImpl.findById(Integer id) |
Modifier and Type | Method | Description |
---|---|---|
List<Notification> |
NotificationDAO.findByIssueId(Integer issueId) |
Finds all Notifications for an Issue.
|
List<Notification> |
NotificationDAOImpl.findByIssueId(Integer issueId) |
Modifier and Type | Method | Description |
---|---|---|
List<Notification> |
NotificationService.getIssueNotifications(Issue issue) |
Retrieves all notifications for an issue where the notification's user is also active.
|
List<Notification> |
NotificationService.getIssueNotifications(Issue issue,
boolean primaryOnly,
boolean activeOnly) |
|
List<Notification> |
NotificationService.getPrimaryIssueNotifications(Issue issue) |
Retrieves the primary issue notifications.
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
NotificationService.addIssueNotification(Notification notification) |
TODO: whats its use?
|
void |
NotificationService.sendNotification(Notification notification,
Notification.Type type,
String baseURL) |
Modifier and Type | Method | Description |
---|---|---|
List<Notification> |
NotificationServiceImpl.getIssueNotifications(Issue issue) |
|
List<Notification> |
NotificationServiceImpl.getIssueNotifications(Issue issue,
boolean primaryOnly,
boolean activeOnly) |
|
List<Notification> |
NotificationServiceImpl.getPrimaryIssueNotifications(Issue issue) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
NotificationServiceImpl.addIssueNotification(Notification notification) |
|
void |
NotificationServiceImpl.sendNotification(Notification notification,
Notification.Type type,
String url) |
Copyright © 2002–2019 itracker. All rights reserved.