1 /*
2 * Copyright 2005-2006 The Kuali Foundation
3 *
4 * Licensed under the Educational Community License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.opensource.org/licenses/ecl2.php
9 *
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.ole.coa.service.impl;
17
18
19 import org.kuali.ole.coa.businessobject.ProjectCode;
20 import org.kuali.ole.coa.service.ProjectCodeService;
21 import org.kuali.ole.sys.context.SpringContext;
22 import org.kuali.ole.sys.service.NonTransactional;
23 import org.kuali.rice.krad.service.BusinessObjectService;
24 import org.springframework.cache.annotation.Cacheable;
25
26 /**
27 * This class is the service implementation for the ProjectCode structure. This is the default implementation, that is delivered
28 * with Kuali.
29 */
30
31 @NonTransactional
32 public class ProjectCodeServiceImpl implements ProjectCodeService {
33 /**
34 *
35 * @see org.kuali.ole.coa.service.ProjectCodeService#getByPrimaryId(java.lang.String)
36 */
37 @Override
38 // KFSMI-2612
39 @Cacheable(value=ProjectCode.CACHE_NAME, key="'projectCode='+#p0")
40 public ProjectCode getByPrimaryId(String projectCode) {
41 return SpringContext.getBean(BusinessObjectService.class).findBySinglePrimaryKey(ProjectCode.class, projectCode);
42 }
43
44 }