Coverage Report - org.kuali.rice.kew.exception.WorkflowServiceErrorImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
WorkflowServiceErrorImpl
0%
0/58
0%
0/10
1.294
 
 1  
 /**
 2  
  * Copyright 2005-2011 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.kew.exception;
 17  
 
 18  
 import java.io.Serializable;
 19  
 import java.util.ArrayList;
 20  
 import java.util.Collection;
 21  
 import java.util.Iterator;
 22  
 import java.util.List;
 23  
 
 24  
 import org.kuali.rice.krad.util.MessageMap;
 25  
 
 26  
 
 27  
 
 28  
 /**
 29  
  * <p>Title: DocElementError </p>
 30  
  * <p>Description: A simple object holding any error(s) generated by
 31  
  * an IDocElement and it's children IDocElements.  See IDocElement
 32  
  * documentation for further explanation.</p>
 33  
  * <p>Copyright: Copyright (c) 2002</p>
 34  
  * <p>Company: Indiana University</p>
 35  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 36  
  */
 37  
 public class WorkflowServiceErrorImpl implements Serializable, WorkflowServiceError {
 38  
 
 39  
         private static final String CHILDREN_IN_ERROR = "-1";
 40  
 
 41  
   static final long serialVersionUID = 6900090941686297017L;
 42  
   private Collection children;
 43  
   private String type;
 44  
   private String message;
 45  
   private String arg1;
 46  
   private String arg2;
 47  
   
 48  
   /**
 49  
    * Passing the actual message map around so we don't lose doc search messages in standalone.
 50  
    */
 51  
   private MessageMap messageMap;
 52  
 
 53  
 
 54  
 
 55  0
   private WorkflowServiceErrorImpl() {
 56  0
   }
 57  
 
 58  0
   public WorkflowServiceErrorImpl(String message, String type) {
 59  0
     children = new ArrayList();
 60  0
     this.message = message;
 61  0
     this.type = type;
 62  0
   }
 63  
 
 64  0
   public WorkflowServiceErrorImpl(String message, String type, String arg1) {
 65  0
       children = new ArrayList();
 66  0
       this.message = message;
 67  0
       this.type = type;
 68  0
       this.arg1 = arg1;
 69  0
   }
 70  
 
 71  0
   public WorkflowServiceErrorImpl(String message, String type, String arg1, String arg2) {
 72  0
       children = new ArrayList();
 73  0
       this.message = message;
 74  0
       this.type = type;
 75  0
       this.arg1 = arg1;
 76  0
       this.arg2 = arg2;
 77  0
   }
 78  0
   public WorkflowServiceErrorImpl(String message, String type, String arg1, String arg2, MessageMap messageMap) {
 79  0
       children = new ArrayList();
 80  0
       this.message = message;
 81  0
       this.type = type;
 82  0
       this.arg1 = arg1;
 83  0
       this.arg2 = arg2;
 84  0
       this.messageMap = messageMap;
 85  0
   }
 86  
 
 87  
   public Collection getChildren() {
 88  0
     return this.children;
 89  
   }
 90  
 
 91  
   public String getMessage() {
 92  0
     return this.message;
 93  
   }
 94  
 
 95  
   public String getKey() {
 96  0
     return this.type;
 97  
   }
 98  
 
 99  
   public String getArg1() {
 100  0
     return arg1;
 101  
   }
 102  
 
 103  
   public String getArg2() {
 104  0
     return arg2;
 105  
   }
 106  
 
 107  
   public void addChild(WorkflowServiceError busError) {
 108  0
     if (busError != null) {
 109  0
       children.add(busError);
 110  
     }
 111  0
   }
 112  
 
 113  
   public void addChildren(Collection children) {
 114  0
     this.children.addAll(children);
 115  0
   }
 116  
 
 117  
   public Collection getFlatChildrenList() {
 118  0
     return buildFlatChildrenList(this, null);
 119  
   }
 120  
 
 121  
   private static Collection buildFlatChildrenList(WorkflowServiceError error, List flatList) {
 122  0
     if (flatList == null) {
 123  0
       flatList = new ArrayList();
 124  
     }
 125  
 
 126  0
     if (error.getKey() != CHILDREN_IN_ERROR) {
 127  0
       flatList.add(error);
 128  
     }
 129  
 
 130  0
     Iterator iter = error.getChildren().iterator();
 131  
 
 132  0
     while (iter.hasNext()) {
 133  0
       WorkflowServiceError childError = (WorkflowServiceError) iter.next();
 134  0
       buildFlatChildrenList(childError, flatList);
 135  0
     }
 136  
 
 137  0
     return flatList;
 138  
   }
 139  
 
 140  
   public String toString() {
 141  0
     String s = "[WorkflowServiceErrorImpl: type=" + type + ", message=" + message + ", arg1=" + arg1 + ", arg2=" + arg2 + ", children=";
 142  0
     if (children == null) {
 143  0
         s += "null";
 144  
     } else {
 145  0
         s += children;
 146  
     }
 147  0
     s += "]";
 148  0
     return s;
 149  
   }
 150  
 
 151  
   /**
 152  
    * @return the messageMap
 153  
    */
 154  
   public MessageMap getMessageMap() {
 155  0
           return this.messageMap;
 156  
   }
 157  
 
 158  
   /**
 159  
    * @param messageMap the messageMap to set
 160  
    */
 161  
   public void setMessageMap(MessageMap messageMap) {
 162  0
           this.messageMap = messageMap;
 163  0
   }
 164  
 }