Clover Coverage Report - sampleapp 2.0.0-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
20   78   8   6.67
10   52   0.4   3
3     2.67  
1    
 
  TravelDocumentAction2       Line # 39 20 0% 8 33 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2007-2008 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 edu.sampleu.travel.web.action;
17   
18    import java.util.Iterator;
19   
20    import javax.servlet.http.HttpServletRequest;
21    import javax.servlet.http.HttpServletResponse;
22   
23    import org.apache.commons.lang.StringUtils;
24    import org.apache.struts.action.ActionForm;
25    import org.apache.struts.action.ActionForward;
26    import org.apache.struts.action.ActionMapping;
27    import org.kuali.rice.core.util.RiceConstants;
28    import org.kuali.rice.core.util.RiceKeyConstants;
29    import org.kuali.rice.kns.exception.ValidationException;
30    import org.kuali.rice.kns.service.KNSServiceLocator;
31    import org.kuali.rice.kns.util.GlobalVariables;
32    import org.kuali.rice.kns.util.KNSConstants;
33    import org.kuali.rice.kns.web.struts.action.KualiTransactionalDocumentActionBase;
34   
35    import edu.sampleu.travel.bo.TravelAccount;
36    import edu.sampleu.travel.document.TravelDocument2;
37    import edu.sampleu.travel.web.form.TravelDocumentForm2;
38   
 
39    public class TravelDocumentAction2 extends KualiTransactionalDocumentActionBase {
40   
 
41  0 toggle public ActionForward insertAccount(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
42  0 TravelDocumentForm2 travelForm = (TravelDocumentForm2) form;
43  0 TravelAccount travAcct = (TravelAccount) KNSServiceLocator.getBusinessObjectService().retrieve(travelForm.getTravelAccount());
44    // Make sure a travel account was actually retrieved.
45  0 if (travAcct == null) {
46  0 GlobalVariables.getMessageMap().putError("travelAccount.number", RiceKeyConstants.ERROR_CUSTOM, "Invalid travel account number");
47  0 throw new ValidationException("Invalid travel account number");
48    }
49    // Insert the travel account into the list, if the list does not already contain it.
50  0 boolean containsNewAcct = false;
51  0 for (Iterator<TravelAccount> travAcctIter = ((TravelDocument2) travelForm.getDocument()).getTravelAccounts().iterator(); travAcctIter.hasNext();) {
52  0 if (travAcctIter.next().getNumber().equals(travAcct.getNumber())) {
53  0 containsNewAcct = true;
54  0 break;
55    }
56    }
57  0 if (!containsNewAcct) {
58  0 ((TravelDocument2) travelForm.getDocument()).getTravelAccounts().add(travAcct);
59    }
60  0 travelForm.setTravelAccount(new TravelAccount());
61  0 return mapping.findForward(RiceConstants.MAPPING_BASIC);
62    }
63   
 
64  0 toggle public ActionForward deleteAccount(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
65    // Remove the travel account at the index specified in the "methodToCall" parameter.
66  0 TravelDocumentForm2 travelForm = (TravelDocumentForm2) form;
67  0 String strIndex = StringUtils.substringBetween((String) request.getAttribute(KNSConstants.METHOD_TO_CALL_ATTRIBUTE),
68    KNSConstants.METHOD_TO_CALL_PARM1_LEFT_DEL, KNSConstants.METHOD_TO_CALL_PARM1_RIGHT_DEL);
69  0 if (StringUtils.isNotBlank(strIndex)) {
70  0 ((TravelDocument2) travelForm.getDocument()).getTravelAccounts().remove(Integer.parseInt(strIndex));
71    }
72  0 return mapping.findForward(RiceConstants.MAPPING_BASIC);
73    }
74   
 
75  0 toggle public ActionForward refresh(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
76  0 return mapping.findForward(RiceConstants.MAPPING_BASIC);
77    }
78    }