| org.kuali.module.labor.service.LaborLedgerEntryService
All known Subclasses: org.kuali.module.labor.service.impl.LaborLedgerEntryServiceImpl,
LaborLedgerEntryService | public interface LaborLedgerEntryService (Code) | | This interface provides its clients with access to labor leger entries in the backend data store.
|
find | Iterator<LedgerEntry> find(Map<String, String> fieldValues)(Code) | | Find the ledger entries that satisfy the all entries in the given field-value pair
Parameters: fieldValues - the given field-value pair the ledger entries that satisfy the all entries in the given field-value pair |
getMaxSequenceNumber | Integer getMaxSequenceNumber(LedgerEntry ledgerEntry)(Code) | | The sequence number is one of the primary keys of ledger entry. The entries can be grouped by other keys. This method is used
to get the maximum sequence number in the group of entries.
Parameters: ledgerEntry - the given ledger entry the maximum sequence number in a group of entries. If the group doesn't exist, return 0. |
save | void save(LedgerEntry ledgerEntry)(Code) | | Save the given ledger entry or update it if it exsits
Parameters: ledgerEntry - the given ledger entry |
|
|