| org.kuali.module.gl.service.SufficientFundRebuildService
All known Subclasses: org.kuali.module.gl.service.impl.SufficientFundRebuildServiceImpl,
SufficientFundRebuildService | public interface SufficientFundRebuildService (Code) | | An interface which declares methods needed to rebuild sufficient funds balances
|
delete | public void delete(SufficientFundRebuild sfrb)(Code) | | Deletes a SufficientFundRebuild record from the persistence store
Parameters: sfrb - the sufficient fund rebuild record to delete |
get | public SufficientFundRebuild get(String chartOfAccountsCode, String accountFinancialObjectTypeCode, String accountNumberFinancialObjectCode)(Code) | | Returns a sufficient fund rebuild record, based on the given keys
Parameters: chartOfAccountsCode - the chart of the sufficient fund rebuild record to return Parameters: accountFinancialObjectTypeCode - if the record has an object code, the object code of the sufficient fund rebuild record to return Parameters: accountNumberFinancialObjectCode - if the record has an account number, the account number of the sufficient fund rebuild record to return the qualifying sufficient fund rebuild record, or null if not found |
getAll | public Collection getAll()(Code) | | Returns all sufficient funds records in the persistence store
a Collection of all sufficient fund rebuild records |
getAllAccountEntries | public Collection getAllAccountEntries()(Code) | | Returns all sufficient fund rebuild records using account numbers
a Collection of sufficient fund rebuild records |
getAllObjectEntries | public Collection getAllObjectEntries()(Code) | | Returns all sufficient fund rebuild records using object codes
a Collection of sufficient fund rebuild records |
getByAccount | public SufficientFundRebuild getByAccount(String chartOfAccountsCode, String accountNumberFinancialObjectCode)(Code) | | Returns a sufficient fund rebuild record given the parameters as keys
Parameters: chartOfAccountsCode - the chart of the record to return Parameters: accountNumberFinancialObjectCode - either an account number or an object code of the sufficient fund rebuild record to return the qualifying sufficient fund rebuild record, or null if not found |
save | public void save(SufficientFundRebuild sfrb)(Code) | | Saves a sufficient fund rebuild record to the persistence store
Parameters: sfrb - the sufficient fund rebuild record to save |
|
|