org.kuali.kfs.module.purap.document.dataaccess
Interface NegativePaymentRequestApprovalLimitDao

All Known Implementing Classes:
NegativePaymentRequestApprovalLimitDaoOjb

public interface NegativePaymentRequestApprovalLimitDao

Negative Payment Request Approval Limit DAO Interface.


Method Summary
 Collection<NegativePaymentRequestApprovalLimit> findAboveLimit(org.kuali.rice.kns.util.KualiDecimal limit)
          Retrieve a collection of NegativePaymentRequestApprovalLimit where the NegativePaymentRequestApprovalLimitAmount is greater than the limit passed in.
 Collection<NegativePaymentRequestApprovalLimit> findBelowLimit(org.kuali.rice.kns.util.KualiDecimal limit)
          Retrieve a collection of NegativePaymentRequestApprovalLimit where the NegativePaymentRequestApprovalLimitAmount is less than the limit passed in.
 Collection<NegativePaymentRequestApprovalLimit> findByChart(String chartCode)
          Find limits by chart.
 Collection<NegativePaymentRequestApprovalLimit> findByChartAndAccount(String chartCode, String accountNumber)
          Find limits by chart and account.
 Collection<NegativePaymentRequestApprovalLimit> findByChartAndOrganization(String chartCode, String organizationCode)
          Find limits by chart and organization.
 

Method Detail

findByChart

Collection<NegativePaymentRequestApprovalLimit> findByChart(String chartCode)
Find limits by chart.

Parameters:
chartCode - - chart of accounts code
Returns:
- collection of negative payment request approval limits

findByChartAndAccount

Collection<NegativePaymentRequestApprovalLimit> findByChartAndAccount(String chartCode,
                                                                      String accountNumber)
Find limits by chart and account.

Parameters:
chartCode - - chart of accounts code
accountNumber -
Returns:
- collection of negative payment request approval limits

findByChartAndOrganization

Collection<NegativePaymentRequestApprovalLimit> findByChartAndOrganization(String chartCode,
                                                                           String organizationCode)
Find limits by chart and organization.

Parameters:
chartCode - - chart of accounts code
organizationCode - - organization code
Returns:
- collection of negative payment request approval limits

findAboveLimit

Collection<NegativePaymentRequestApprovalLimit> findAboveLimit(org.kuali.rice.kns.util.KualiDecimal limit)
Retrieve a collection of NegativePaymentRequestApprovalLimit where the NegativePaymentRequestApprovalLimitAmount is greater than the limit passed in. (Used for Testing.)

Parameters:
limit - - lower limit
Returns:
- collection of negative payment request approval limits

findBelowLimit

Collection<NegativePaymentRequestApprovalLimit> findBelowLimit(org.kuali.rice.kns.util.KualiDecimal limit)
Retrieve a collection of NegativePaymentRequestApprovalLimit where the NegativePaymentRequestApprovalLimitAmount is less than the limit passed in. (Used for Testing.)

Parameters:
limit - - upper limit
Returns:
- collection of negative payment request approval limits


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