| org.kuali.module.gl.dao.UniversityDateDao
All known Subclasses: org.kuali.module.gl.dao.ojb.UniversityDateDaoOjb,
UniversityDateDao | public interface UniversityDateDao (Code) | | An DAO interface declaring methods needed by UniversityDates to interact with the database
|
getAccountingPeriodCode | public Collection getAccountingPeriodCode()(Code) | | Returns all distinct accounting period codes from the table
a Collection of all distinct accounting period codes represented by UniversityDate records in the database |
getByPrimaryKey | public UniversityDate getByPrimaryKey(Date date)(Code) | | Returns a university date record based on a given java.sql.Date
Parameters: date - a Date to find the corresponding University Date record a University Date record if found, null if not |
getByPrimaryKey | public UniversityDate getByPrimaryKey(java.util.Date date)(Code) | | Returns a university date record based on java.util.Date
Parameters: date - a java.util.Date to find the corresponding University Date record a University Date record if found, null if not |
getFirstFiscalYearDate | public UniversityDate getFirstFiscalYearDate(Integer fiscalYear)(Code) | | Returns the first university date for a given fiscal year
Parameters: fiscalYear - the fiscal year to find the first date for a UniversityDate record for the first day of the given fiscal year, or null if nothing can be found |
getLastFiscalYearDate | public UniversityDate getLastFiscalYearDate(Integer fiscalYear)(Code) | | Returns the last university date for a given fiscal year
Parameters: fiscalYear - the fiscal year to find the last date for a UniversityDate record for the last day in the given fiscal year, or null if nothing can be found |
|
|