| org.kuali.module.gl.dao.CorrectionChangeDao
All known Subclasses: org.kuali.module.gl.dao.ojb.CorrectionChangeDaoOjb,
CorrectionChangeDao | public interface CorrectionChangeDao (Code) | | A DAO interface for CorrectionChange business objects to interact with the databse
|
delete | void delete(CorrectionChange spec)(Code) | | Surprisingly, this method deletes a GLCP correction
Parameters: spec - the GLCP correction to delete |
findByDocumentHeaderIdAndCorrectionGroupNumber | List findByDocumentHeaderIdAndCorrectionGroupNumber(String documentHeaderId, Integer correctionGroupLineNumber)(Code) | | Finds CorrectionChanges associated with the given document and group
Parameters: documentHeaderId - the document number of a GLCP document Parameters: correctionGroupLineNumber - the line number of the group within the GLCP document to find correction chagnes for a List of correction changes |
save | void save(CorrectionChange spec)(Code) | | This method saves a GLCP correction
Parameters: spec - the GLCP correction to save in the database |
|
|