| org.kuali.module.gl.service.ReversalService
All known Subclasses: org.kuali.module.gl.service.impl.ReversalServiceImpl,
ReversalService | public interface ReversalService (Code) | | An interface with methods to interact with reversals
|
delete | public void delete(Reversal re)(Code) | | Removes a reversal record from the persistence store
Parameters: re - the reversal to send to the happy reversal farm in the sky |
getByDate | public Iterator getByDate(Date before)(Code) | | Fetches all of the reversals that are set to reverse before or on the given date
Parameters: before - the date returned reversals should reverse on or before an Iterator of reversals |
getByTransaction | public Reversal getByTransaction(Transaction t)(Code) | | Fetches or generates a reversal record, based on the given transaction
Parameters: t - a transaction to find a reversal record for a reversal record for the transaction |
getSummaryByDate | public LedgerEntryHolder getSummaryByDate(Date before)(Code) | | Summarizes all of the reversal records set to reverse before or on the given date
Parameters: before - the date summarized reversals should reverse on or before a LedgerEntryHolder with the summary date |
save | public void save(Reversal re)(Code) | | Saves a reversal to the database
Parameters: re - the reversal to save |
|
|