001/* 002 * Copyright 2007 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.kuali.ole.module.purap.document.service.impl; 017 018import org.kuali.ole.module.purap.businessobject.NegativeInvoiceApprovalLimit; 019import org.kuali.ole.module.purap.document.dataaccess.NegativeInvoiceApprovalLimitDao; 020import org.kuali.ole.module.purap.document.service.NegativeInvoiceApprovalLimitService; 021import org.kuali.ole.sys.service.NonTransactional; 022import org.kuali.rice.core.api.util.type.KualiDecimal; 023 024import java.util.Collection; 025 026@NonTransactional 027public class NegativeInvoiceApprovalLimitServiceImpl implements NegativeInvoiceApprovalLimitService { 028 029 private NegativeInvoiceApprovalLimitDao dao; 030 031 public void setNegativeInvoiceApprovalLimitDao(NegativeInvoiceApprovalLimitDao dao) { 032 this.dao = dao; 033 } 034 035 /** 036 * @see org.kuali.ole.module.purap.document.service.NegativeInvoiceApprovalLimitService#findByChart(String) 037 */ 038 public Collection<NegativeInvoiceApprovalLimit> findByChart(String chartCode) { 039 return dao.findByChart(chartCode); 040 } 041 042 /** 043 * @see org.kuali.ole.module.purap.document.service.NegativeInvoiceApprovalLimitService#findByChartAndAccount(String, 044 * String) 045 */ 046 public Collection<NegativeInvoiceApprovalLimit> findByChartAndAccount(String chartCode, String accountNumber) { 047 return dao.findByChartAndAccount(chartCode, accountNumber); 048 } 049 050 /** 051 * @see org.kuali.ole.module.purap.document.service.NegativeInvoiceApprovalLimitService#findByChartAndOrganization(String, 052 * String) 053 */ 054 public Collection<NegativeInvoiceApprovalLimit> findByChartAndOrganization(String chartCode, String organizationCode) { 055 return dao.findByChartAndOrganization(chartCode, organizationCode); 056 } 057 058 /** 059 * @see org.kuali.ole.module.purap.document.service.NegativeInvoiceApprovalLimitService#findAboveLimit(org.kuali.rice.core.api.util.type.KualiDecimal) 060 */ 061 public Collection<NegativeInvoiceApprovalLimit> findAboveLimit(KualiDecimal limit) { 062 return dao.findAboveLimit(limit); 063 } 064 065 /** 066 * @see org.kuali.ole.module.purap.document.service.NegativeInvoiceApprovalLimitService#findBelowLimit(org.kuali.rice.core.api.util.type.KualiDecimal) 067 */ 068 public Collection<NegativeInvoiceApprovalLimit> findBelowLimit(KualiDecimal limit) { 069 return dao.findBelowLimit(limit); 070 } 071 072}