| org.kuali.module.gl.dao.SufficientFundRebuildDao
All known Subclasses: org.kuali.module.gl.dao.ojb.SufficientFundRebuildDaoOjb,
SufficientFundRebuildDao | public interface SufficientFundRebuildDao (Code) | | This class...
|
delete | public void delete(SufficientFundRebuild sfrb)(Code) | | Deletes a sufficient fund rebuild balance
Parameters: sfrb - the sufficient fund rebuild balance to delete |
get | public SufficientFundRebuild get(String chartOfAccountsCode, String accountFinancialObjectTypeCode, String accountNumberFinancialObjectCode)(Code) | | Returns the sufficient fund rebuild balance with the primary key given by the parameters
Parameters: chartOfAccountsCode - the chart of the rebuild balance to return Parameters: accountFinancialObjectTypeCode - the object type code of the rebuild balance to return Parameters: accountNumberFinancialObjectCode - the account number or fiscal object of the rebuild balance to return the qualifying rebuild balance, or null if not found in the database |
getAll | public Collection getAll()(Code) | | Returns all sufficient fund rebuild balances in the database
a Collection with all sufficient fund rebuild balances |
getByAccount | public SufficientFundRebuild getByAccount(String chartOfAccountsCode, String accountNumberFinancialObjectCode)(Code) | | Returns the sufficient fund rebuild balance by chart and account number/object code
Parameters: chartOfAccountsCode - the chart of the rebuild balance to return Parameters: accountNumberFinancialObjectCode - the account number or object code of the rebuild balance to returnd a qualifying sufficient fund rebuild record if found in the database, or null |
getByType | public Collection getByType(String accountFinancialObjectTypeCode)(Code) | | Returns all sufficient fund rebuild balances with a given object type code
Parameters: accountFinancialObjectTypeCode - the object type code of sufficient fund balances to return a Collection of qualifying sufficient fund balances |
save | public void save(SufficientFundRebuild sfrb)(Code) | | Saves a sufficient funds rebuild records to the database
Parameters: sfrb - the sufficient fund rebuild balance to save |
testingGetAllEntries | public Collection testingGetAllEntries()(Code) | | This method should only be used in unit tests. It loads all the gl_sf_rebuild_t rows in memory into a collection. This won't
sace for production.
a Collection of all sufficient fund rebuild balances in the database |
|
|