1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.kpme.core.groupkey.web;
17
18 import org.kuali.kpme.core.bo.HrBusinessObject;
19 import org.kuali.kpme.core.bo.HrBusinessObjectMaintainableImpl;
20 import org.kuali.kpme.core.institution.InstitutionBo;
21 import org.kuali.kpme.core.service.HrServiceLocator;
22
23 public class HrGroupKeyMaintainableImpl extends HrBusinessObjectMaintainableImpl {
24
25
26
27
28 private static final long serialVersionUID = 2089540080740082948L;
29
30 @Override
31 public HrBusinessObject getObjectById(String id) {
32 return InstitutionBo.from(HrServiceLocator.getInstitutionService().getInstitutionById(id));
33 }
34
35 }