| |
|
| org.kuali.module.gl.dao.ReversalDao
All known Subclasses: org.kuali.module.gl.dao.ojb.ReversalDaoOjb,
ReversalDao | public interface ReversalDao (Code) | | An interface that declares the methods needed for reversal services to interact with the database
|
delete | public void delete(Reversal re)(Code) | | Deletes a reversal record
Parameters: re - a reversal to delete |
getByDate | public Iterator getByDate(Date before)(Code) | | Returns all reversals that should have reversed on or before the given date
Parameters: before - the date that reversals retrieved should reverse on or before an iterator of reversal records |
getByTransaction | public Reversal getByTransaction(Transaction t)(Code) | | Looks up the reversal that matches the keys from the given transaction
Parameters: t - the given transaction the reversal that matches the keys of that transaction |
getMaxSequenceNumber | public int getMaxSequenceNumber(Transaction t)(Code) | | Find the maximum transactionLedgerEntrySequenceNumber in the entry table for a specific transaction. This is used to make
sure that rows added have a unique primary key.
Parameters: t - a transaction to find the maximum sequence number for the max sequence number for the given transaction |
save | public void save(Reversal re)(Code) | | Saves a reversal record
Parameters: re - a reversal to save |
|
|
|