1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kew.superuser.web; |
18 | |
|
19 | |
import java.util.ArrayList; |
20 | |
import java.util.Arrays; |
21 | |
import java.util.HashSet; |
22 | |
import java.util.List; |
23 | |
import java.util.Set; |
24 | |
|
25 | |
import javax.servlet.http.HttpServletRequest; |
26 | |
|
27 | |
import org.apache.commons.lang.ArrayUtils; |
28 | |
import org.apache.struts.action.ActionMapping; |
29 | |
import org.kuali.rice.core.util.ConcreteKeyValue; |
30 | |
import org.kuali.rice.core.util.KeyValue; |
31 | |
import org.kuali.rice.kew.doctype.bo.DocumentType; |
32 | |
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue; |
33 | |
import org.kuali.rice.kew.service.WorkflowInfo; |
34 | |
import org.kuali.rice.kew.web.KewRoutingKualiForm; |
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | 0 | public class SuperUserForm extends KewRoutingKualiForm { |
43 | |
|
44 | |
private static final long serialVersionUID = 982228198266403397L; |
45 | |
private Long routeHeaderId; |
46 | |
private String docHandlerUrl; |
47 | |
private Integer routeLevel; |
48 | 0 | private List<String> futureNodeNames = new ArrayList<String>(); |
49 | |
private String destNodeName; |
50 | |
private String returnDestNodeName; |
51 | |
private String action; |
52 | 0 | private List actionRequests = new ArrayList(); |
53 | |
private String actionTakenActionRequestId; |
54 | |
private String actionTakenNetworkId; |
55 | |
private String actionTakenWorkGroupId; |
56 | |
private String actionTakenRecipientCode; |
57 | |
private boolean authorized; |
58 | |
private boolean blanketApprove; |
59 | 0 | private String methodToCall = ""; |
60 | 0 | private boolean runPostProcessorLogic = true; |
61 | |
private String[] actionRequestRunPostProcessorCheck; |
62 | |
|
63 | |
private String lookupableImplServiceName; |
64 | |
private String lookupType; |
65 | |
|
66 | |
private DocumentRouteHeaderValue routeHeader; |
67 | |
|
68 | |
|
69 | |
private String returnLocation; |
70 | |
|
71 | |
@Override |
72 | |
public String getMethodToCall() { |
73 | 0 | return methodToCall; |
74 | |
} |
75 | |
@Override |
76 | |
public void setMethodToCall(String methodToCall) { |
77 | 0 | this.methodToCall = methodToCall; |
78 | 0 | } |
79 | |
|
80 | |
public boolean isBlanketApprove() { |
81 | 0 | return blanketApprove; |
82 | |
} |
83 | |
|
84 | |
public void setBlanketApprove(boolean blanketApprove) { |
85 | 0 | this.blanketApprove = blanketApprove; |
86 | 0 | } |
87 | |
|
88 | |
public DocumentRouteHeaderValue getRouteHeader() { |
89 | 0 | return routeHeader; |
90 | |
} |
91 | |
|
92 | |
public void setRouteHeader(DocumentRouteHeaderValue routeHeader) { |
93 | 0 | this.routeHeader = routeHeader; |
94 | 0 | } |
95 | |
|
96 | |
public Long getRouteHeaderId() { |
97 | 0 | return routeHeaderId; |
98 | |
} |
99 | |
|
100 | |
public void setRouteHeaderId(Long routeHeaderId) { |
101 | 0 | this.routeHeaderId = routeHeaderId; |
102 | 0 | } |
103 | |
|
104 | |
public String getDocHandlerUrl() { |
105 | 0 | return docHandlerUrl; |
106 | |
} |
107 | |
|
108 | |
public void setDocHandlerUrl(String docHandlerUrl) { |
109 | 0 | this.docHandlerUrl = docHandlerUrl; |
110 | 0 | } |
111 | |
|
112 | |
public String getRouteHeaderIdString() { |
113 | 0 | return routeHeaderId.toString(); |
114 | |
} |
115 | |
|
116 | |
public Integer getRouteLevel() { |
117 | 0 | return routeLevel; |
118 | |
} |
119 | |
|
120 | |
public void setRouteLevel(Integer routeLevel) { |
121 | 0 | this.routeLevel = routeLevel; |
122 | 0 | } |
123 | |
|
124 | |
public String getAction() { |
125 | 0 | return action; |
126 | |
} |
127 | |
|
128 | |
public void setAction(String action) { |
129 | 0 | this.action = action; |
130 | 0 | } |
131 | |
|
132 | |
public List getActionRequests() { |
133 | 0 | return actionRequests; |
134 | |
} |
135 | |
|
136 | |
public void setActionRequests(List actionRequests) { |
137 | 0 | this.actionRequests = actionRequests; |
138 | 0 | } |
139 | |
|
140 | |
public String getActionTakenActionRequestId() { |
141 | 0 | return actionTakenActionRequestId; |
142 | |
} |
143 | |
|
144 | |
public void setActionTakenActionRequestId(String actionTakenActionRequestId) { |
145 | 0 | this.actionTakenActionRequestId = actionTakenActionRequestId; |
146 | 0 | } |
147 | |
|
148 | |
public String getActionTakenNetworkId() { |
149 | 0 | return actionTakenNetworkId; |
150 | |
} |
151 | |
|
152 | |
public void setActionTakenNetworkId(String actionTakenNetworkId) { |
153 | 0 | this.actionTakenNetworkId = actionTakenNetworkId; |
154 | 0 | } |
155 | |
|
156 | |
public String getActionTakenWorkGroupId() { |
157 | 0 | return actionTakenWorkGroupId; |
158 | |
} |
159 | |
|
160 | |
public void setActionTakenWorkGroupId(String actionTakenWorkGroupId) { |
161 | 0 | this.actionTakenWorkGroupId = actionTakenWorkGroupId; |
162 | 0 | } |
163 | |
|
164 | |
|
165 | |
|
166 | |
|
167 | |
|
168 | |
|
169 | |
|
170 | |
|
171 | |
|
172 | |
public boolean isAuthorized() { |
173 | 0 | return authorized; |
174 | |
} |
175 | |
|
176 | |
public void setAuthorized(boolean authorized) { |
177 | 0 | this.authorized = authorized; |
178 | 0 | } |
179 | |
|
180 | |
@Override |
181 | |
public void reset(ActionMapping mapping, HttpServletRequest request){ |
182 | 0 | this.futureNodeNames = new ArrayList<String>(); |
183 | 0 | } |
184 | |
|
185 | |
public String getActionTakenRecipientCode() { |
186 | 0 | return actionTakenRecipientCode; |
187 | |
} |
188 | |
|
189 | |
public void setActionTakenRecipientCode(String actionTakenRecipientCode) { |
190 | 0 | this.actionTakenRecipientCode = actionTakenRecipientCode; |
191 | 0 | } |
192 | |
|
193 | |
public boolean isSUDocument() { |
194 | 0 | if (routeHeader.isStateInitiated() || routeHeader.isStateSaved()) { |
195 | 0 | return false; |
196 | |
} |
197 | 0 | return true; |
198 | |
} |
199 | |
|
200 | |
public boolean isStateAllowsAction() { |
201 | 0 | if ( routeHeader.isApproved() || routeHeader.isProcessed() || routeHeader.isDisaproved() ) { |
202 | 0 | return false; |
203 | |
} |
204 | 0 | return true; |
205 | |
} |
206 | |
|
207 | |
public DocumentType getDocumentType() { |
208 | 0 | return getRouteHeader().getDocumentType(); |
209 | |
} |
210 | |
|
211 | |
public Set<KeyValue> getPreviousNodes() throws Exception { |
212 | 0 | String[] nodeNames = new WorkflowInfo().getPreviousRouteNodeNames(routeHeader.getRouteHeaderId()); |
213 | 0 | Set<KeyValue> previousNodes = new HashSet<KeyValue>(); |
214 | 0 | for (String nodeName : nodeNames) { |
215 | 0 | previousNodes.add(new ConcreteKeyValue(nodeName, nodeName)); |
216 | |
} |
217 | 0 | return previousNodes; |
218 | |
} |
219 | |
|
220 | |
public String getDestNodeName() { |
221 | 0 | return destNodeName; |
222 | |
} |
223 | |
public void setDestNodeName(String previousNodeName) { |
224 | 0 | this.destNodeName = previousNodeName; |
225 | 0 | } |
226 | |
public List<String> getFutureNodeNames() { |
227 | 0 | return futureNodeNames; |
228 | |
} |
229 | |
public void setFutureNodeNames(List<String> futureNodeNames) { |
230 | 0 | this.futureNodeNames = futureNodeNames; |
231 | 0 | } |
232 | |
public String getReturnDestNodeName() { |
233 | 0 | return returnDestNodeName; |
234 | |
} |
235 | |
public void setReturnDestNodeName(String returnDestNodeName) { |
236 | 0 | this.returnDestNodeName = returnDestNodeName; |
237 | 0 | } |
238 | |
public String getLookupableImplServiceName() { |
239 | 0 | return lookupableImplServiceName; |
240 | |
} |
241 | |
public void setLookupableImplServiceName(String lookupableImplServiceName) { |
242 | 0 | this.lookupableImplServiceName = lookupableImplServiceName; |
243 | 0 | } |
244 | |
public String getLookupType() { |
245 | 0 | return lookupType; |
246 | |
} |
247 | |
public void setLookupType(String lookupType) { |
248 | 0 | this.lookupType = lookupType; |
249 | 0 | } |
250 | |
public boolean isRunPostProcessorLogic() { |
251 | 0 | return this.runPostProcessorLogic; |
252 | |
} |
253 | |
public void setRunPostProcessorLogic(boolean runPostProcessorLogic) { |
254 | 0 | this.runPostProcessorLogic = runPostProcessorLogic; |
255 | 0 | } |
256 | |
public String[] getActionRequestRunPostProcessorCheck() { |
257 | 0 | return this.actionRequestRunPostProcessorCheck; |
258 | |
} |
259 | |
public void setActionRequestRunPostProcessorCheck(String[] actionRequestRunPostProcessorCheck) { |
260 | 0 | this.actionRequestRunPostProcessorCheck = actionRequestRunPostProcessorCheck; |
261 | 0 | } |
262 | |
public Boolean getActionRequestPostProcessorCheck(String actionRequestId) { |
263 | 0 | return ArrayUtils.contains(getActionRequestRunPostProcessorCheck(), actionRequestId); |
264 | |
} |
265 | |
public List<String> getActionRequestPostProcessorCheck() { |
266 | 0 | if (getActionRequestRunPostProcessorCheck() == null) { |
267 | 0 | return null; |
268 | |
} |
269 | 0 | return Arrays.asList(getActionRequestRunPostProcessorCheck()); |
270 | |
} |
271 | |
|
272 | |
public String getReturnLocation() { |
273 | 0 | return returnLocation; |
274 | |
} |
275 | |
public void setReturnLocation(String returnLocation) { |
276 | 0 | this.returnLocation = returnLocation; |
277 | 0 | } |
278 | |
public boolean getActionRequestPostProcessorDisplayCheck(){ |
279 | 0 | return getDocumentType().getSuPostprocessorOverridePolicy().getPolicyValue().booleanValue(); |
280 | |
} |
281 | |
} |