| org.kuali.module.gl.dao.SufficientFundBalancesDao
All known Subclasses: org.kuali.module.gl.dao.ojb.SufficientFundBalancesDaoOjb,
SufficientFundBalancesDao | public interface SufficientFundBalancesDao (Code) | | A DAO interface declaring methods needed to help SufficientFundBalance records interact with the database
|
deleteByAccountNumber | public void deleteByAccountNumber(Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber)(Code) | | Deletes sufficient fund balances associated with a given year, chart, and account number
Parameters: universityFiscalYear - the university fiscal year of sufficient fund balances to delete Parameters: chartOfAccountsCode - the chart code of sufficient fund balances to delete Parameters: accountNumber - the account number of sufficient fund balances to delete |
getByObjectCode | public Collection getByObjectCode(Integer universityFiscalYear, String chartOfAccountsCode, String financialObjectCode)(Code) | | Fetches sufficient fund balances based on given keys of fiscal year, chart code, and object code
Parameters: universityFiscalYear - the university fiscal year of sufficient fund balances to find Parameters: chartOfAccountsCode - the chart of accounts code of sufficient fund balances to find Parameters: financialObjectCode - the object code of sufficient fund balances to find a Collection of sufficient fund balances, qualified by the parameter values |
getByPrimaryId | public SufficientFundBalances getByPrimaryId(Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber, String financialObjectCode)(Code) | | Returns a sufficient fund balance by its primary key values
Parameters: universityFiscalYear - the university fiscal year of the sufficient funds balance to return Parameters: chartOfAccountsCode - the chart of accounts code of the sufficient funds balance to return Parameters: accountNumber - the account number of the sufficient funds balance to return Parameters: financialObjectCode - the object code of the sufficient funds balance to return the qualifying sufficient funds balance record, or null no suitable record can be found |
save | public void save(SufficientFundBalances sfb)(Code) | | Save a sufficient funds balance
Parameters: sfb - the sufficient funds balance to save |
testingGetAllEntries | public Collection testingGetAllEntries()(Code) | | This method should only be used in unit tests. It loads all the gl_sf_balances_t rows in memory into a collection. This won't
sace for production.
a Collection with all sufficient funds balances in the database |
|
|