Coverage Report - org.kuali.rice.kns.util.ErrorContainer
 
Classes in this File Line Coverage Branch Coverage Complexity
ErrorContainer
0%
0/29
0%
0/16
3
 
 1  
 /*
 2  
  * Copyright 2006-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 org.kuali.rice.kns.util;
 17  
 
 18  
 
 19  
 import java.io.Serializable;
 20  
 import java.util.ArrayList;
 21  
 import java.util.Iterator;
 22  
 import java.util.List;
 23  
 import java.util.Set;
 24  
 
 25  
 import org.apache.struts.action.ActionMessage;
 26  
 import org.apache.struts.action.ActionMessages;
 27  
 
 28  
 
 29  
 /**
 30  
  * Provides access to a copy of an ErrorMap and information derived from it. Necessary because ErrorMap implements the Map
 31  
  * interface, which for some reason makes JSTL unwilling to translate ErrorMap.errorCount into a call to the getErrorCount method of
 32  
  * that ErrorMap instance.
 33  
  * 
 34  
  * Since I had to create this class to provide easy access to the error count (which must be computed as the sum of the sizes of the
 35  
  * error message lists of all properties in the ErrorMap), I also moved in the existing code which massaged the contents of the
 36  
  * ErrorMap for the purposes of export to the JSP.
 37  
  * 
 38  
  * 
 39  
  */
 40  
 public class ErrorContainer implements Serializable {
 41  
     private final MessageMap errorMap;
 42  
     private final int errorCount;
 43  
 
 44  
     /**
 45  
      * Constructs an ErrorContainer
 46  
      * 
 47  
      * @param errorMap
 48  
      */
 49  0
     public ErrorContainer(MessageMap errorMap) {
 50  0
         this.errorMap = errorMap;
 51  0
         this.errorCount = errorMap.getErrorCount();
 52  0
     }
 53  
 
 54  
     /**
 55  
      * @return number of errors in the ErrorMap used to initialize this container
 56  
      */
 57  
     public int getErrorCount() {
 58  0
             if (hasFormatterError()) {
 59  0
                     return 0;
 60  
             }
 61  0
         return errorCount;
 62  
     }
 63  
 
 64  
     /**
 65  
      * @return simple List of all properies for which errorMessages exist in the ErrorMap used to initialize this container
 66  
      */
 67  
     public List getErrorPropertyList() {
 68  0
         List properties = new ArrayList();
 69  
 
 70  0
         for (Iterator iter = errorMap.keySet().iterator(); iter.hasNext();) {
 71  0
             properties.add(iter.next());
 72  
         }
 73  
 
 74  0
         return properties;
 75  
     }
 76  
 
 77  
     /**
 78  
      * This method checks whether the errorMap contains at least a formatter error.
 79  
      * @return boolean true if the errorMap contains a formatter error and false otherwise
 80  
      */
 81  
     private boolean hasFormatterError() {
 82  0
             if (errorMap.getErrorCount()>0) {
 83  0
             for (String errorKey : (Set<String>)errorMap.keySet()) {
 84  0
                     TypedArrayList errorValues = errorMap.getMessages(errorKey);
 85  0
                     for (ErrorMessage errorMessage : (List<ErrorMessage>)errorValues) {
 86  0
                     if (errorMessage.getErrorKey().equals(RiceKeyConstants.ERROR_DOCUMENT_MAINTENANCE_FORMATTING_ERROR)) {
 87  0
                         return true;
 88  
                     }
 89  
                     }
 90  0
             }
 91  
         }
 92  0
         return false;
 93  
     }
 94  
     
 95  
     /**
 96  
      * @return ActionMessages instance containing error messages constructed from the contents of the ErrorMap with which this
 97  
      *         container was initialized
 98  
      */
 99  
     public ActionMessages getRequestErrors() {
 100  0
         ActionMessages requestErrors = new ActionMessages();
 101  0
         for (Iterator iter = errorMap.keySet().iterator(); iter.hasNext();) {
 102  0
             String property = (String) iter.next();
 103  0
             List errorList = (List) errorMap.get(property);
 104  
 
 105  0
             for (Iterator iterator = errorList.iterator(); iterator.hasNext();) {
 106  0
                 ErrorMessage errorMessage = (ErrorMessage) iterator.next();
 107  
 
 108  
                 // add ActionMessage with any parameters
 109  0
                 requestErrors.add(property, new ActionMessage(errorMessage.getErrorKey(), errorMessage.getMessageParameters()));
 110  0
             }
 111  0
         }
 112  0
         return requestErrors;
 113  
     }
 114  
 }