001/*
002 * Copyright 2006 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.gl.service.impl;
017
018import java.util.Map;
019
020import org.kuali.ole.gl.OJBUtility;
021import org.kuali.ole.gl.businessobject.Entry;
022import org.kuali.ole.gl.dataaccess.EntryDao;
023import org.kuali.ole.gl.service.EntryService;
024import org.springframework.transaction.annotation.Transactional;
025
026/**
027 * The base implementation of EntryService
028 */
029@Transactional
030public class EntryServiceImpl implements EntryService {
031    private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(EntryServiceImpl.class);
032
033    private EntryDao entryDao;
034
035    /**
036     * Purge the entry table by year/chart
037     * 
038     * @param chart chart of entries to purge
039     * @param year fiscal year of entries to purge
040     * @see org.kuali.ole.gl.service.EntryService#purgeYearByChart(java.lang.String, int)
041     */
042    public void purgeYearByChart(String chart, int year) {
043        LOG.debug("purgeYearByChart() started");
044
045        entryDao.purgeYearByChart(chart, year);
046    }
047
048    public void setEntryDao(EntryDao entryDao) {
049        this.entryDao = entryDao;
050    }
051
052    /**
053     * This method gets the number of GL entries according to input fields and values
054     * 
055     * @param fieldValues the input fields and values
056     * @return the number of the open encumbrances
057     * @see org.kuali.ole.gl.service.EntryService#getEntryRecordCount(java.util.Map)
058     */
059    public Integer getEntryRecordCount(Map fieldValues) {
060        return OJBUtility.getResultSizeFromMap(fieldValues, new Entry()).intValue();
061    }
062}