org.itracker.persistence.dao
Interface ReportDAO

All Superinterfaces:
BaseDAO<Report>
All Known Implementing Classes:
ReportDAOImpl

public interface ReportDAO
extends BaseDAO<Report>


Method Summary
 List<Report> findAll()
          Finds all existing reports.
 Report findByPrimaryKey(Integer reportId)
          Finds a report by id.
 
Methods inherited from interface org.itracker.persistence.dao.BaseDAO
delete, detach, merge, refresh, save, saveOrUpdate
 

Method Detail

findByPrimaryKey

Report findByPrimaryKey(Integer reportId)
Finds a report by id.

Parameters:
reportId - system ID
Returns:
report instance or null if none exists with the given id

findAll

List<Report> findAll()
Finds all existing reports.

Returns:
list of reports in unspecified order


Copyright © 2002-2012 itracker. All Rights Reserved.