Clover Coverage Report - KS LUM 1.3.0-SNAPSHOT (Aggregated)
Coverage timestamp: Thu Apr 28 2011 06:51:40 EDT
../../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
11   64   5   3.67
2   31   0.45   3
3     1.67  
1    
 
  OrganizationContextImpl       Line # 29 11 0% 5 16 0% 0.0
 
No Tests
 
1    /**
2    * Copyright 2010 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10    * software distributed under the License is distributed on an "AS IS"
11    * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12    * or implied. See the License for the specific language governing
13    * permissions and limitations under the License.
14    */
15   
16    package org.kuali.student.lum.statement.config.context;
17   
18    import java.util.Map;
19   
20    import org.kuali.student.common.exceptions.OperationFailedException;
21    import org.kuali.student.core.organization.dto.OrgInfo;
22    import org.kuali.student.core.organization.service.OrganizationService;
23    import org.kuali.student.core.statement.dto.ReqComponentInfo;
24    import org.kuali.student.lum.statement.typekey.ReqComponentFieldTypes;
25   
26    /**
27    * This class creates the template context for an organization.
28    */
 
29    public class OrganizationContextImpl extends BasicContextImpl {
30   
31    private OrganizationService organizationService;
32   
33    public final static String ORG_TOKEN = "org";
34   
 
35  0 toggle public void setOrganizationService(OrganizationService organizationService) {
36  0 this.organizationService = organizationService;
37    }
38   
 
39  0 toggle private OrgInfo getOrganization(String orgId) throws OperationFailedException {
40  0 if (orgId == null) {
41  0 return null;
42    }
43  0 try {
44  0 return organizationService.getOrganization(orgId);
45    } catch (Exception e) {
46  0 throw new OperationFailedException(e.getMessage(), e);
47    }
48    }
49   
50    /**
51    * Creates the context map (template data) for the requirement component.
52    *
53    * @param reqComponent Requirement component
54    * @throws OperationFailedException Creating context map fails
55    */
 
56  0 toggle public Map<String, Object> createContextMap(ReqComponentInfo reqComponent) throws OperationFailedException {
57  0 String orgId = getReqComponentFieldValue(reqComponent, ReqComponentFieldTypes.ORGANIZATION_KEY.getId());
58  0 OrgInfo org = getOrganization(orgId);
59   
60  0 Map<String, Object> contextMap = super.createContextMap(reqComponent);
61  0 contextMap.put(ORG_TOKEN, org);
62  0 return contextMap;
63    }
64    }