BaseDAO<IssueActivity>
IssueActivityDAOImpl
public interface IssueActivityDAO extends BaseDAO<IssueActivity>
Modifier and Type | Method | Description |
---|---|---|
IssueActivity |
findById(Integer activityId) |
Finds the activity with the given ID.
|
List<IssueActivity> |
findByIssueId(Integer issueId) |
Finds all activities of a given Issue.
|
List<IssueActivity> |
findByIssueIdAndNotification(Integer issueId,
boolean notificationSent) |
Finds all activities for an Issue with the given notification status.
|
IssueActivity findById(Integer activityId)
activityId
- system ID of the activity to returnList<IssueActivity> findByIssueId(Integer issueId)
issueId
- system ID of the issue of which to retrieve activitiesList<IssueActivity> findByIssueIdAndNotification(Integer issueId, boolean notificationSent)
issueId
- system ID of the issue of which to retrieve activitiesnotificationSent
- whether to return activities for which
a notification has been sent or notCopyright © 2002–2019 itracker. All rights reserved.