Clover Coverage Report - Kuali Student 1.1-SNAPSHOT (Aggregated)
Coverage timestamp: Thu Mar 3 2011 04:02:59 EST
../../../../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
14   68   5   4.67
2   35   0.36   3
3     1.67  
1    
 
  AtpContextImpl       Line # 29 14 0% 5 1 94.7% 0.94736844
 
  (11)
 
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.core.statement.dto.ReqComponentInfo;
21    import org.kuali.student.core.atp.dto.AtpDurationTypeInfo;
22    import org.kuali.student.core.atp.service.AtpService;
23    import org.kuali.student.core.exceptions.OperationFailedException;
24    import org.kuali.student.lum.statement.typekey.ReqComponentFieldTypes;
25   
26    /**
27    * This class creates the template context for an academic time period.
28    */
 
29    public class AtpContextImpl extends BasicContextImpl {
30   
31    private AtpService atpService;
32   
33    public final static String DURATION_TYPE_TOKEN = "durationType";
34    public final static String DURATION_TOKEN = "duration";
35   
 
36  7 toggle public void setAtpService(AtpService atpService) {
37  7 this.atpService = atpService;
38    }
39   
 
40  11 toggle private AtpDurationTypeInfo getAtpDurationType(String atpDurationTypeKey) throws OperationFailedException {
41  11 if (atpDurationTypeKey == null) {
42  1 return null;
43    }
44  10 try {
45  10 AtpDurationTypeInfo atpDurationType = this.atpService.getAtpDurationType(atpDurationTypeKey);
46  10 return atpDurationType;
47    } catch (Exception e) {
48  0 throw new OperationFailedException(e.getMessage(), e);
49    }
50    }
51   
52    /**
53    * Creates the context map (template data) for the requirement component.
54    *
55    * @param reqComponent Requirement component
56    * @throws OperationFailedException Creating context map fails
57    */
 
58  11 toggle public Map<String, Object> createContextMap(ReqComponentInfo reqComponent) throws OperationFailedException {
59  11 String durationTypeKey = getReqComponentFieldValue(reqComponent, ReqComponentFieldTypes.DURATION_TYPE_KEY.getId());
60  11 String duration = getReqComponentFieldValue(reqComponent, ReqComponentFieldTypes.DURATION_KEY.getId());
61  11 AtpDurationTypeInfo atpDurationType = getAtpDurationType(durationTypeKey);
62   
63  11 Map<String, Object> contextMap = super.createContextMap(reqComponent);
64  11 contextMap.put(DURATION_TYPE_TOKEN, atpDurationType);
65  11 contextMap.put(DURATION_TOKEN, duration);
66  11 return contextMap;
67    }
68    }