| org.kuali.module.gl.dao.OriginEntryGroupDao
All known Subclasses: org.kuali.module.gl.dao.ojb.OriginEntryGroupDaoOjb,
OriginEntryGroupDao | public interface OriginEntryGroupDao (Code) | | |
deleteGroups | public void deleteGroups(Collection<OriginEntryGroup> groups)(Code) | | Delete all the groups in the list. Note...it doesn't delete the entries within them, you need
OriginEntryDao.deleteGroups for that
|
getAllScrubbableBackupGroups | public Collection<OriginEntryGroup> getAllScrubbableBackupGroups()(Code) | | Gets a collection of all backup groups that are scrubbable (i.e. valid, process, scrub indicators all set to true)
a Collection of scrubbable origin entry groups |
getExactMatchingEntryGroup | public OriginEntryGroup getExactMatchingEntryGroup(Integer id)(Code) | | The the group for the ID passed. The EXACT one, not one that is close, it must be EXACTLY EXACT.
Parameters: id - the group id of the group to return a highly exact origin entry group, or, if not found, null |
getGroupWithMaxIdFromSource | public OriginEntryGroup getGroupWithMaxIdFromSource(String sourceCode)(Code) | | Given an origin entry group source type (defined in OriginEntrySource)
Parameters: sourceCode - the source code of the groups to find a OriginEntryGroup with the given source code and max ORIGIN_ENTRY_GRP_ID See Also: org.kuali.module.gl.bo.OriginEntrySource |
getGroupsToBackup | public Collection getGroupsToBackup(Date groupDate)(Code) | | Get all the groups to be copied into the backup group
Parameters: groupDate - the date returned origin entry groups must have been created on or before a Collection of origin entry groups to backup |
getLaborBackupGroups | public Collection getLaborBackupGroups(Date groupDate)(Code) | | Get all the Labor backup groups to scrub (ie, origin entry groups with source OriginEntrySource.LABOR_BACKUP)
Parameters: groupDate - the creation date of labor backup groups to find a Collection of Labor backup groups |
getLaborGroupsToBackup | public Collection getLaborGroupsToBackup(Date groupDate)(Code) | | Get all the groups to be copied into the backup group
Parameters: groupDate - the date returned origin entry groups must have been created on or before a Collection of Labor Origin Entry Groups to backup |
getMatchingGroups | public Collection getMatchingGroups(Map searchCriteria)(Code) | | Fetch all the groups that match the criteria
Parameters: searchCriteria - a Map of search criteria to form the query a Collection of Origin Entry Groups that match that criteria |
getOlderGroups | public Collection<OriginEntryGroup> getOlderGroups(Date day)(Code) | | Get all the groups that are older than a date
Parameters: day - the date groups returned should be older than a Collection of origin entry groups older than that date |
getPosterGroups | public Collection getPosterGroups(String groupSourceCode)(Code) | | Get all the groups for the poster (that is to say, Groups with "Process" being true)
Parameters: groupSourceCode - the source code of origin entry groups to return a Collection of origin entry groups that should be processed by the poster |
getRecentGroups | public Collection<OriginEntryGroup> getRecentGroups(Date day)(Code) | | Fetches groups created on or after the given date
Parameters: day - the date origin entry groups to return must have been created on or after a Collection of origin entry groups created on or after that day |
|
|