Package | Description |
---|---|
org.itracker.model |
All entity classes are POJO beans.
|
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 | Method | Description |
---|---|---|
List<IssueHistory> |
Issue.getHistory() |
Modifier and Type | Method | Description |
---|---|---|
void |
Issue.setHistory(List<IssueHistory> history) |
Modifier and Type | Method | Description |
---|---|---|
IssueHistory |
IssueHistoryDAO.findByPrimaryKey(Integer entryId) |
Returns the issue history entry with the given primary key.
|
IssueHistory |
IssueHistoryDAOImpl.findByPrimaryKey(Integer entryId) |
Modifier and Type | Method | Description |
---|---|---|
List<IssueHistory> |
IssueHistoryDAO.findByIssueId(Integer issueId) |
Finds all history entries for an Issue.
|
List<IssueHistory> |
IssueHistoryDAOImpl.findByIssueId(Integer issueId) |
Modifier and Type | Method | Description |
---|---|---|
IssueHistory |
IssueService.getLastIssueHistory(Integer issueId) |
Returns the latest issue history entry for a particular issue.
|
Modifier and Type | Method | Description |
---|---|---|
List<IssueHistory> |
IssueService.getIssueHistory(Integer issueId) |
Modifier and Type | Method | Description |
---|---|---|
boolean |
IssueService.addIssueHistory(IssueHistory history) |
Modifier and Type | Method | Description |
---|---|---|
IssueHistory |
IssueServiceImpl.getLastIssueHistory(Integer issueId) |
Returns the latest issue history entry for a particular issue.
|
Modifier and Type | Method | Description |
---|---|---|
List<IssueHistory> |
IssueServiceImpl.getIssueHistory(Integer issueId) |
Old implementation is left here, commented, because it checked for
history entry status.
|
Modifier and Type | Method | Description |
---|---|---|
boolean |
IssueServiceImpl.addIssueHistory(IssueHistory history) |
this should not exist.
|
Copyright © 2002–2019 itracker. All rights reserved.