| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 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 | |
|
| 30 | |
|
| 31 | |
|
| 32 | |
|
| 33 | |
|
| 34 | |
|
| 35 | |
|
| 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 | |
|
| 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 | |
|
| 153 | |
|
| 154 | |
public MessageMap getMessageMap() { |
| 155 | 0 | return this.messageMap; |
| 156 | |
} |
| 157 | |
|
| 158 | |
|
| 159 | |
|
| 160 | |
|
| 161 | |
public void setMessageMap(MessageMap messageMap) { |
| 162 | 0 | this.messageMap = messageMap; |
| 163 | 0 | } |
| 164 | |
} |