ProjectDAOImpl
public interface ProjectDAO extends BaseDAO<Project>
Modifier and Type | Method | Description |
---|---|---|
List<Project> |
findAll() |
Finds all projects.
|
List<Project> |
findAllAvailable() |
Finds all projects that are active or viewable.
|
Project |
findByName(String name) |
Finds a project by name.
|
Project |
findByPrimaryKey(Integer projectId) |
Finds a project by ID.
|
List<Project> |
findByStatus(int status) |
Finds all projects with a given status.
|
Date |
getLastIssueUpdateDate(Integer projectId) |
Returns the projects with id projectId latest modified issues modification date
|
Project findByPrimaryKey(Integer projectId)
projectId
- sytem IDList<Project> findAll()
List<Project> findByStatus(int status)
status
- project statusList<Project> findAllAvailable()
Date getLastIssueUpdateDate(Integer projectId)
Copyright © 2002–2019 itracker. All rights reserved.