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).
|
Modifier and Type | Field | Description |
---|---|---|
static Comparator<IssueAttachment> |
IssueAttachment.ORIGIINAL_FILENAME_COMPARATOR |
Compares 2 attachments by original filename.
|
static Comparator<IssueAttachment> |
IssueAttachment.SIZE_COMPARATOR |
Compares 2 attachments by file size.
|
Modifier and Type | Method | Description |
---|---|---|
List<IssueAttachment> |
Issue.getAttachments() |
Modifier and Type | Method | Description |
---|---|---|
int |
IssueAttachment.OriginalFilenameComparator.compare(IssueAttachment o1,
IssueAttachment o2) |
|
int |
IssueAttachment.SizeComparator.compare(IssueAttachment a,
IssueAttachment b) |
Modifier and Type | Method | Description |
---|---|---|
void |
Issue.setAttachments(List<IssueAttachment> attachments) |
Modifier and Type | Method | Description |
---|---|---|
IssueAttachment |
IssueAttachmentDAO.findByFileName(String fileName) |
Finds an attachment by the file name on the filesystem.
|
IssueAttachment |
IssueAttachmentDAOImpl.findByFileName(String fileName) |
|
IssueAttachment |
IssueAttachmentDAO.findByPrimaryKey(Integer attachmentId) |
|
IssueAttachment |
IssueAttachmentDAOImpl.findByPrimaryKey(Integer attachmentId) |
Modifier and Type | Method | Description |
---|---|---|
List<IssueAttachment> |
IssueAttachmentDAO.findAll() |
Finds all Issue attachments.
|
List<IssueAttachment> |
IssueAttachmentDAOImpl.findAll() |
|
List<IssueAttachment> |
IssueAttachmentDAO.findByIssue(Integer issueId) |
Finds all attachments for an Issue.
|
List<IssueAttachment> |
IssueAttachmentDAOImpl.findByIssue(Integer issueId) |
Copyright © 2002–2019 itracker. All rights reserved.