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: /*
17: * Created on Jul 8, 2004
18: *
19: */
20: package org.kuali.module.pdp.service.impl;
21:
22: import java.util.List;
23: import java.util.Map;
24:
25: import org.kuali.module.pdp.bo.Code;
26: import org.kuali.module.pdp.bo.PdpUser;
27: import org.kuali.module.pdp.dao.ReferenceDao;
28: import org.kuali.module.pdp.service.ReferenceService;
29: import org.springframework.transaction.annotation.Transactional;
30:
31: /**
32: * @author jsissom
33: */
34: @Transactional
35: public class ReferenceServiceImpl implements ReferenceService {
36:
37: private ReferenceDao referenceDao;
38:
39: public ReferenceServiceImpl() {
40: super ();
41: }
42:
43: public Code getCode(String type, String key) {
44: return referenceDao.getCode(type, key);
45: }
46:
47: public Map getallMap(String type) {
48: return referenceDao.getAllMap(type);
49: }
50:
51: public List getAll(String type) {
52: return referenceDao.getAll(type);
53: }
54:
55: public Code addCode(String type, String code, String description,
56: PdpUser u) {
57: return referenceDao.addCode(type, code, description, u);
58: }
59:
60: public void updateCode(String code, String description,
61: String type, PdpUser u) {
62: referenceDao.updateCode(code, description, type, u);
63: }
64:
65: public void updateCode(Code item, PdpUser u) {
66: referenceDao.updateCode(item, u);
67: }
68:
69: public void deleteCode(Code item) {
70: referenceDao.deleteCode(item);
71: }
72:
73: public void setReferenceDao(ReferenceDao r) {
74: this.referenceDao = r;
75: }
76: }
|