src/main/java/de/uapcore/lightpit/dao/IssueDao.java

changeset 72
0646c14e36fb
parent 62
833e0385572a
child 75
33b6843fdf8a
equal deleted inserted replaced
71:dca186d3911f 72:0646c14e36fb
36 36
37 public interface IssueDao extends GenericDao<Issue> { 37 public interface IssueDao extends GenericDao<Issue> {
38 38
39 /** 39 /**
40 * Lists all issues for the specified project. 40 * Lists all issues for the specified project.
41 *
41 * @param project the project 42 * @param project the project
42 * @return a list of issues 43 * @return a list of issues
43 * @throws SQLException on any kind of SQL error 44 * @throws SQLException on any kind of SQL error
44 */ 45 */
45 List<Issue> list(Project project) throws SQLException; 46 List<Issue> list(Project project) throws SQLException;

mercurial