| org.kuali.module.gl.dao.CorrectionChangeGroupDao
All known Subclasses: org.kuali.module.gl.dao.ojb.CorrectionChangeGroupDaoOjb,
CorrectionChangeGroupDao | public interface CorrectionChangeGroupDao (Code) | | a DAO interface that declares methods needed for CorrectionChangeGroups to deal with the database
|
delete | void delete(CorrectionChangeGroup group)(Code) | | Deletes a CorrectionChangeGroup from the database
Parameters: group - the group to delete |
findByDocumentNumber | Collection findByDocumentNumber(String documentNumber)(Code) | | Finds all CorrectionChange groups associated with a document
Parameters: documentNumber - the document number of a GLCP document a Collection of CorrectionChangeGroup records |
findByDocumentNumberAndCorrectionChangeGroupNumber | CorrectionChangeGroup findByDocumentNumberAndCorrectionChangeGroupNumber(String documentNumber, Integer CorrectionChangeGroupNumber)(Code) | | Finds a correction change group, based on GLCP document number and the group number
Parameters: documentNumber - the document number of the correction change group to retrieve Parameters: CorrectionChangeGroupNumber - the number of the group to retrieve the found CorrectionChangeGroup, or null if not found |
|
|