Clover Coverage Report - KS LUM 1.2-M6-SNAPSHOT (Aggregated)
Coverage timestamp: Sun Sep 11 2011 07:02:50 EDT
../../../../../../../img/srcFileCovDistChart10.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 1 93.8% 0.9375
 
  (8)
 
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  6 toggle public void setOrganizationService(OrganizationService organizationService) {
36  6 this.organizationService = organizationService;
37    }
38   
 
39  8 toggle private OrgInfo getOrganization(String orgId) throws OperationFailedException {
40  8 if (orgId == null) {
41  1 return null;
42    }
43  7 try {
44  7 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  8 toggle public Map<String, Object> createContextMap(ReqComponentInfo reqComponent) throws OperationFailedException {
57  8 String orgId = getReqComponentFieldValue(reqComponent, ReqComponentFieldTypes.ORGANIZATION_KEY.getId());
58  8 OrgInfo org = getOrganization(orgId);
59   
60  8 Map<String, Object> contextMap = super.createContextMap(reqComponent);
61  8 contextMap.put(ORG_TOKEN, org);
62  8 return contextMap;
63    }
64    }