| org.kuali.module.chart.service.AccountService
All known Subclasses: org.kuali.module.chart.service.impl.AccountServiceImpl,
AccountService | public interface AccountService (Code) | | This interface defines methods that an Account Service must provide
|
getAccountsThatUserIsResponsibleFor | public List getAccountsThatUserIsResponsibleFor(UniversalUser kualiUser)(Code) | | Fetches the accounts that the user is either the fiscal officer or fiscal officer delegate for.
Parameters: kualiUser - a list of Accounts that the user has responsibility for |
getAllAccounts | public Iterator getAllAccounts()(Code) | | get all accounts in the system. This is needed by a sufficient funds rebuilder job
iterator of all accounts |
getByPrimaryId | public Account getByPrimaryId(String chartOfAccountsCode, String accountNumber)(Code) | | Retrieves an Account object based on primary key.
Parameters: chartOfAccountsCode - - Chart of Accounts Code Parameters: accountNumber - - Account Number Account |
getPrimaryDelegationByExample | public Delegate getPrimaryDelegationByExample(Delegate delegateExample, String totalDollarAmount)(Code) | | This method retrieves the fiscal officers primary delegate based on the chart, account, and document type specified on the
example, along with the total dollar amount
Parameters: delegateExample - The object that contains the chart, account, and document type that should be used to query theaccount delegate table Parameters: totalDollarAmount - The amount that should be compared to the from and to amount on the account delegate table The primary delegate for this account, document type, and amount |
getSecondaryDelegationsByExample | public List getSecondaryDelegationsByExample(Delegate delegateExample, String totalDollarAmount)(Code) | | This method retrieves the fiscal officers secondary delegates based on the chart, account, and document type specified on the
example, along with the total dollar amount
Parameters: delegateExample - The object that contains the chart, account, and document type that should be used to query theaccount delegate table Parameters: totalDollarAmount - The amount that should be compared to the from and to amount on the account delegate table The primary delegate for this account, document type, and amount |
hasResponsibilityOnAccount | public boolean hasResponsibilityOnAccount(UniversalUser kualiUser, Account account)(Code) | | Does the given user have responsibilities on the given account?
Parameters: kualiUser - the universal user to check responsibilities for Parameters: account - the account to check responsibilities on true if user does have responsibilities, false if otherwise |
|
|