org.itracker.persistence.dao
Interface IssueHistoryDAO

All Superinterfaces:
BaseDAO<IssueHistory>
All Known Implementing Classes:
IssueHistoryDAOImpl

public interface IssueHistoryDAO
extends BaseDAO<IssueHistory>


Method Summary
 List<IssueHistory> findByIssueId(Integer issueId)
          Finds all history entries for an Issue.
 IssueHistory findByPrimaryKey(Integer entryId)
          Returns the issue history entry with the given primary key.
 
Methods inherited from interface org.itracker.persistence.dao.BaseDAO
delete, detach, merge, refresh, save, saveOrUpdate
 

Method Detail

findByPrimaryKey

IssueHistory findByPrimaryKey(Integer entryId)
Returns the issue history entry with the given primary key.

Parameters:
entryId - system ID
Returns:
issue history entry or null

findByIssueId

List<IssueHistory> findByIssueId(Integer issueId)
Finds all history entries for an Issue.

Parameters:
issueId - system ID
Returns:
list of history entries in unspecified order


Copyright © 2002-2012 itracker. All Rights Reserved.