01: /*
02: * Copyright 2007 The Kuali Foundation.
03: *
04: * Licensed under the Educational Community License, Version 1.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.opensource.org/licenses/ecl1.php
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: package org.kuali.module.labor.service.impl;
17:
18: import java.util.Collection;
19: import java.util.HashMap;
20: import java.util.Map;
21:
22: import org.kuali.core.service.BusinessObjectService;
23: import org.kuali.module.labor.bo.PositionObjectBenefit;
24: import org.kuali.module.labor.service.LaborPositionObjectBenefitService;
25: import org.springframework.transaction.annotation.Transactional;
26:
27: /**
28: * This class provides its clients with access to labor position object benefit entries in the backend data store.
29: *
30: * @see org.kuali.module.labor.bo.PositionObjectBenefit
31: */
32: @Transactional
33: public class LaborPositionObjectBenefitServiceImpl implements
34: LaborPositionObjectBenefitService {
35:
36: private BusinessObjectService businessObjectService;
37:
38: /**
39: * @see org.kuali.module.labor.service.LaborPositionObjectBenefitService#getPositionObjectBenefits(java.lang.Integer,
40: * java.lang.String, java.lang.String)
41: */
42: public Collection<PositionObjectBenefit> getPositionObjectBenefits(
43: Integer universityFiscalYear, String chartOfAccountsCode,
44: String financialObjectCode) {
45:
46: Map fieldValues = new HashMap();
47: fieldValues.put("universityFiscalYear", universityFiscalYear);
48: fieldValues.put("chartOfAccountsCode", chartOfAccountsCode);
49: fieldValues.put("financialObjectCode", financialObjectCode);
50:
51: return businessObjectService.findMatching(
52: PositionObjectBenefit.class, fieldValues);
53: }
54:
55: /**
56: * Sets the businessObjectService attribute value.
57: *
58: * @param businessObjectService The businessObjectService to set.
59: */
60: public void setBusinessObjectService(
61: BusinessObjectService businessObjectService) {
62: this.businessObjectService = businessObjectService;
63: }
64: }
|