Uses of Class
org.kuali.kfs.coa.businessobject.AccountDelegate

Packages that use AccountDelegate
org.kuali.kfs.coa.dataaccess   
org.kuali.kfs.coa.dataaccess.impl   
org.kuali.kfs.coa.document.validation.impl   
org.kuali.kfs.coa.identity   
org.kuali.kfs.coa.service   
org.kuali.kfs.coa.service.impl   
 

Uses of AccountDelegate in org.kuali.kfs.coa.dataaccess
 

Methods in org.kuali.kfs.coa.dataaccess that return types with arguments of type AccountDelegate
 Iterator<AccountDelegate> AccountDelegateDao.getAccountDelegationsForPerson(String principalId, boolean primary)
          Retrieves all active account delegates which reference the given user
 

Methods in org.kuali.kfs.coa.dataaccess with parameters of type AccountDelegate
 List AccountDao.getPrimaryDelegationByExample(AccountDelegate delegateExample, String totalDollarAmount)
           
 List AccountDao.getSecondaryDelegationsByExample(AccountDelegate delegateExample, String totalDollarAmount)
           
 

Uses of AccountDelegate in org.kuali.kfs.coa.dataaccess.impl
 

Methods in org.kuali.kfs.coa.dataaccess.impl that return types with arguments of type AccountDelegate
 Iterator<AccountDelegate> AccountDelegateDaoOjb.getAccountDelegationsForPerson(String principalId, boolean primary)
           
 

Methods in org.kuali.kfs.coa.dataaccess.impl with parameters of type AccountDelegate
protected  org.apache.ojb.broker.query.Criteria AccountDaoOjb.getDelegateByExampleCriteria(AccountDelegate delegateExample, String totalDollarAmount, String accountsDelegatePrmrtIndicator)
          This method creates a Criteria based on Delegate, dollar amount and whether or not it is the primary delegate
 List AccountDaoOjb.getPrimaryDelegationByExample(AccountDelegate delegateExample, String totalDollarAmount)
          Resolves the Primary Delegate for the given delegate example.
 List AccountDaoOjb.getSecondaryDelegationsByExample(AccountDelegate delegateExample, String totalDollarAmount)
           
 

Uses of AccountDelegate in org.kuali.kfs.coa.document.validation.impl
 

Fields in org.kuali.kfs.coa.document.validation.impl declared as AccountDelegate
protected  AccountDelegate DelegateRule.newDelegate
           
protected  AccountDelegate DelegateRule.oldDelegate
           
 

Uses of AccountDelegate in org.kuali.kfs.coa.identity
 

Methods in org.kuali.kfs.coa.identity that return AccountDelegate
protected  AccountDelegate AccountDerivedRoleTypeServiceImpl.getDelegateExample(String chartOfAccountsCode, String accountNumber, String fisDocumentTypeCode)
           
protected  AccountDelegate AccountDerivedRoleTypeServiceImpl.getPrimaryDelegate(String chartOfAccountsCode, String accountNumber, String fisDocumentTypeCode, String totalDollarAmount)
           
 

Methods in org.kuali.kfs.coa.identity that return types with arguments of type AccountDelegate
protected  List<AccountDelegate> AccountDerivedRoleTypeServiceImpl.getSecondaryDelegates(String chartOfAccountsCode, String accountNumber, String fisDocumentTypeCode, String totalDollarAmount)
           
 

Methods in org.kuali.kfs.coa.identity with parameters of type AccountDelegate
protected  String AccountDerivedRoleTypeServiceImpl.getAccountDisdelegationInformationForAccountDelegate(AccountDelegate accountDelegate)
          Converts information from the given AccountDelegate record into an informative String
protected  String AccountDerivedRoleTypeServiceImpl.getBlockedAccountDisdelegationInformationForAccountDelegate(AccountDelegate accountDelegate, String blockingDocumentId)
          Converts information from the given AccountDelegate record into an informative String
protected  void AccountDerivedRoleTypeServiceImpl.inactivateDelegation(AccountDelegate delegate)
          Inactivates an account delegate
protected  String AccountDerivedRoleTypeServiceImpl.lookupDocumentBlockingInactivation(AccountDelegate delegate)
          Returns the document number of a maintenance document which would block the inactivation of the given account delegate
 

Uses of AccountDelegate in org.kuali.kfs.coa.service
 

Methods in org.kuali.kfs.coa.service that return AccountDelegate
 AccountDelegate AccountService.getPrimaryDelegationByExample(AccountDelegate delegateExample, String totalDollarAmount)
          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
 

Methods in org.kuali.kfs.coa.service that return types with arguments of type AccountDelegate
 Iterator<AccountDelegate> AccountDelegateService.retrieveAllActiveDelegationsForPerson(String principalId, boolean primary)
          Retrieves all active account delegations which delegate to the given Person
 

Methods in org.kuali.kfs.coa.service with parameters of type AccountDelegate
 FinancialSystemMaintainable AccountDelegateService.buildMaintainableForAccountDelegate(AccountDelegate delegate)
          Builds an appropriate maintainable with the given account delegate as the business object
 AccountDelegate AccountService.getPrimaryDelegationByExample(AccountDelegate delegateExample, String totalDollarAmount)
          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
 List AccountService.getSecondaryDelegationsByExample(AccountDelegate delegateExample, String totalDollarAmount)
          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
 void AccountDelegateService.saveForMaintenanceDocument(AccountDelegate accountDelegate)
          Saves the given account delegate to the persistence store
 

Uses of AccountDelegate in org.kuali.kfs.coa.service.impl
 

Methods in org.kuali.kfs.coa.service.impl that return AccountDelegate
 AccountDelegate AccountServiceImpl.getPrimaryDelegationByExample(AccountDelegate delegateExample, String totalDollarAmount)
           
 

Methods in org.kuali.kfs.coa.service.impl that return types with arguments of type AccountDelegate
protected  List<AccountDelegate> AccountServiceImpl.filterAccountDelegates(AccountDelegate delegateExample, List<AccountDelegate> accountDelegatesToFilterFrom)
          This method filters account delegates by 1) performing an exact match on the document type name of delegateExample 2) if no match is found for 1), then by performing an exact match on the closest parent document type name of delegateExample document type name.
protected  List<AccountDelegate> AccountServiceImpl.filterAccountDelegates(List<AccountDelegate> delegations, String documentTypeNameToFilterOn)
          This method filters account delegates by performing an exact match on the document type name passed in.
 Iterator<AccountDelegate> AccountDelegateServiceImpl.retrieveAllActiveDelegationsForPerson(String principalId, boolean primary)
           
 

Methods in org.kuali.kfs.coa.service.impl with parameters of type AccountDelegate
 FinancialSystemMaintainable AccountDelegateServiceImpl.buildMaintainableForAccountDelegate(AccountDelegate delegate)
           
protected  List<AccountDelegate> AccountServiceImpl.filterAccountDelegates(AccountDelegate delegateExample, List<AccountDelegate> accountDelegatesToFilterFrom)
          This method filters account delegates by 1) performing an exact match on the document type name of delegateExample 2) if no match is found for 1), then by performing an exact match on the closest parent document type name of delegateExample document type name.
 AccountDelegate AccountServiceImpl.getPrimaryDelegationByExample(AccountDelegate delegateExample, String totalDollarAmount)
           
 List AccountServiceImpl.getSecondaryDelegationsByExample(AccountDelegate delegateExample, String totalDollarAmount)
           
 void AccountDelegateServiceImpl.saveForMaintenanceDocument(AccountDelegate accountDelegate)
          Saves the given account delegate to the persistence store
 

Method parameters in org.kuali.kfs.coa.service.impl with type arguments of type AccountDelegate
protected  List<AccountDelegate> AccountServiceImpl.filterAccountDelegates(AccountDelegate delegateExample, List<AccountDelegate> accountDelegatesToFilterFrom)
          This method filters account delegates by 1) performing an exact match on the document type name of delegateExample 2) if no match is found for 1), then by performing an exact match on the closest parent document type name of delegateExample document type name.
protected  List<AccountDelegate> AccountServiceImpl.filterAccountDelegates(List<AccountDelegate> delegations, String documentTypeNameToFilterOn)
          This method filters account delegates by performing an exact match on the document type name passed in.
protected  Set<String> AccountServiceImpl.getPotentialParentDocumentTypeNames(List<AccountDelegate> delegations)
          This method gets a list of potential parent document type names by collecting the unique doc type names from the list of account delegations
 



Copyright © 2005-2012 The Kuali Foundation. All Rights Reserved.