getLaborGroupsToBackup(Date groupDate) Get all the groups to be copied into the backup group...though, notably, this method
does nothing to differentiate labor groups from otherwise normal groups.
We all know that computers aren't naturally exact. They like to fudge things. Databases especially.
If you send a database a table name and a primary key on that table, you really never know what you're
going to get, now do you? But this method makes sure that that rascally database returns the origin
entry group with the primary key of the given group id. Or null if it can't find anything. It works
by magic.
Parameters: id - the id of the origin entry group to return an Origin Entry Group, or null if the exact one couldn't be found See Also:org.kuali.module.gl.dao.OriginEntryGroupDao.getExactMatchingEntryGroup(java.lang.Integer)
Get all the groups to be copied into the backup group...though, notably, this method
does nothing to differentiate labor groups from otherwise normal groups. One must assume
that processing takes place somewhere else
Parameters: groupDate - the date returned origin entry groups must have been created on or before a Collection of Labor Origin Entry Groups to backup See Also:org.kuali.module.gl.dao.OriginEntryGroupDao.getLaborScrubberGroups(java.sql.Date)
Builds an OJB query out of the given map of criteria and fetches 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 See Also:org.kuali.module.gl.dao.OriginEntryGroupDao.getMatchingGroups(java.util.Map)
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 See Also:org.kuali.module.gl.dao.OriginEntryGroupDao.getPosterGroups(java.lang.String)
Given a date, finds all origin entry groups that were created on or after that date
Parameters: day - the date that defines recency - all qualifying origin entries groups will have been created on or after that day a Collection of OriginEntryGroup records See Also:org.kuali.module.gl.dao.OriginEntryGroupDao.getRecentGroups(Date)