1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kew.routeheader; |
17 | |
|
18 | |
import org.apache.commons.lang.ObjectUtils; |
19 | |
import org.apache.commons.lang.StringUtils; |
20 | |
import org.apache.log4j.Logger; |
21 | |
import org.hibernate.annotations.Fetch; |
22 | |
import org.hibernate.annotations.FetchMode; |
23 | |
import org.hibernate.annotations.GenericGenerator; |
24 | |
import org.hibernate.annotations.Parameter; |
25 | |
import org.joda.time.DateTime; |
26 | |
import org.kuali.rice.core.api.exception.RiceRuntimeException; |
27 | |
import org.kuali.rice.core.api.util.KeyValue; |
28 | |
import org.kuali.rice.kew.actionitem.ActionItem; |
29 | |
import org.kuali.rice.kew.actionlist.CustomActionListAttribute; |
30 | |
import org.kuali.rice.kew.actionlist.DefaultCustomActionListAttribute; |
31 | |
import org.kuali.rice.kew.actionrequest.ActionRequestFactory; |
32 | |
import org.kuali.rice.kew.actionrequest.ActionRequestValue; |
33 | |
import org.kuali.rice.kew.actiontaken.ActionTakenValue; |
34 | |
import org.kuali.rice.kew.api.KewApiConstants; |
35 | |
import org.kuali.rice.kew.api.WorkflowRuntimeException; |
36 | |
import org.kuali.rice.kew.api.document.Document; |
37 | |
import org.kuali.rice.kew.api.document.DocumentContract; |
38 | |
import org.kuali.rice.kew.api.document.DocumentStatus; |
39 | |
import org.kuali.rice.kew.api.document.DocumentUpdate; |
40 | |
import org.kuali.rice.kew.docsearch.SearchableAttributeValue; |
41 | |
import org.kuali.rice.kew.doctype.ApplicationDocumentStatus; |
42 | |
import org.kuali.rice.kew.doctype.DocumentTypePolicy; |
43 | |
import org.kuali.rice.kew.doctype.bo.DocumentType; |
44 | |
import org.kuali.rice.kew.dto.DTOConverter; |
45 | |
import org.kuali.rice.kew.dto.RouteHeaderDTO; |
46 | |
import org.kuali.rice.kew.engine.CompatUtils; |
47 | |
import org.kuali.rice.kew.engine.node.Branch; |
48 | |
import org.kuali.rice.kew.engine.node.BranchState; |
49 | |
import org.kuali.rice.kew.engine.node.RouteNode; |
50 | |
import org.kuali.rice.kew.engine.node.RouteNodeInstance; |
51 | |
import org.kuali.rice.kew.exception.InvalidActionTakenException; |
52 | |
import org.kuali.rice.kew.exception.ResourceUnavailableException; |
53 | |
import org.kuali.rice.kew.exception.WorkflowException; |
54 | |
import org.kuali.rice.kew.mail.CustomEmailAttribute; |
55 | |
import org.kuali.rice.kew.mail.CustomEmailAttributeImpl; |
56 | |
import org.kuali.rice.kew.notes.CustomNoteAttribute; |
57 | |
import org.kuali.rice.kew.notes.CustomNoteAttributeImpl; |
58 | |
import org.kuali.rice.kew.notes.Note; |
59 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
60 | |
import org.kuali.rice.kew.util.CodeTranslator; |
61 | |
import org.kuali.rice.kew.util.KEWConstants; |
62 | |
import org.kuali.rice.kim.api.identity.principal.Principal; |
63 | |
import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; |
64 | |
|
65 | |
import javax.persistence.CascadeType; |
66 | |
import javax.persistence.Column; |
67 | |
import javax.persistence.Entity; |
68 | |
import javax.persistence.FetchType; |
69 | |
import javax.persistence.GeneratedValue; |
70 | |
import javax.persistence.Id; |
71 | |
import javax.persistence.JoinColumn; |
72 | |
import javax.persistence.JoinTable; |
73 | |
import javax.persistence.ManyToMany; |
74 | |
import javax.persistence.NamedQueries; |
75 | |
import javax.persistence.NamedQuery; |
76 | |
import javax.persistence.OneToMany; |
77 | |
import javax.persistence.OrderBy; |
78 | |
import javax.persistence.Table; |
79 | |
import javax.persistence.Transient; |
80 | |
import java.sql.Timestamp; |
81 | |
import java.util.ArrayList; |
82 | |
import java.util.Collection; |
83 | |
import java.util.HashMap; |
84 | |
import java.util.Iterator; |
85 | |
import java.util.List; |
86 | |
import java.util.Map; |
87 | |
|
88 | |
|
89 | |
|
90 | |
|
91 | |
|
92 | |
|
93 | |
|
94 | |
|
95 | |
|
96 | |
|
97 | |
|
98 | |
|
99 | |
|
100 | |
|
101 | |
|
102 | |
|
103 | |
|
104 | |
|
105 | |
|
106 | |
|
107 | |
|
108 | |
|
109 | |
|
110 | |
|
111 | |
|
112 | |
|
113 | |
|
114 | |
|
115 | |
|
116 | |
|
117 | |
|
118 | |
|
119 | |
|
120 | |
|
121 | |
|
122 | |
|
123 | |
|
124 | |
@Entity |
125 | |
@Table(name="KREW_DOC_HDR_T") |
126 | |
|
127 | |
@NamedQueries({ |
128 | |
@NamedQuery(name="DocumentRouteHeaderValue.FindByDocumentId", query="select d from DocumentRouteHeaderValue as d where d.documentId = :documentId"), |
129 | |
@NamedQuery(name="DocumentRouteHeaderValue.QuickLinks.FindWatchedDocumentsByInitiatorWorkflowId", query="SELECT NEW org.kuali.rice.kew.quicklinks.WatchedDocument(documentId, docRouteStatus, docTitle) FROM DocumentRouteHeaderValue WHERE initiatorWorkflowId = :initiatorWorkflowId AND docRouteStatus IN ('"+ KEWConstants.ROUTE_HEADER_ENROUTE_CD +"','"+ KEWConstants.ROUTE_HEADER_EXCEPTION_CD +"') ORDER BY createDate DESC"), |
130 | |
@NamedQuery(name="DocumentRouteHeaderValue.GetAppDocId", query="SELECT d.appDocId from DocumentRouteHeaderValue as d where d.documentId = :documentId") |
131 | |
}) |
132 | |
public class DocumentRouteHeaderValue extends PersistableBusinessObjectBase implements DocumentContract { |
133 | |
private static final long serialVersionUID = -4700736340527913220L; |
134 | 0 | private static final Logger LOG = Logger.getLogger(DocumentRouteHeaderValue.class); |
135 | |
|
136 | |
public static final String CURRENT_ROUTE_NODE_NAME_DELIMITER = ", "; |
137 | |
|
138 | |
@Column(name="DOC_TYP_ID") |
139 | |
private String documentTypeId; |
140 | |
@Column(name="DOC_HDR_STAT_CD") |
141 | |
private java.lang.String docRouteStatus; |
142 | |
@Column(name="RTE_LVL") |
143 | |
private java.lang.Integer docRouteLevel; |
144 | |
@Column(name="STAT_MDFN_DT") |
145 | |
private java.sql.Timestamp statusModDate; |
146 | |
@Column(name="CRTE_DT") |
147 | |
private java.sql.Timestamp createDate; |
148 | |
@Column(name="APRV_DT") |
149 | |
private java.sql.Timestamp approvedDate; |
150 | |
@Column(name="FNL_DT") |
151 | |
private java.sql.Timestamp finalizedDate; |
152 | |
@Transient |
153 | |
private DocumentRouteHeaderValueContent documentContent; |
154 | |
@Column(name="TTL") |
155 | |
private java.lang.String docTitle; |
156 | |
@Column(name="APP_DOC_ID") |
157 | |
private java.lang.String appDocId; |
158 | 0 | @Column(name="DOC_VER_NBR") |
159 | |
private java.lang.Integer docVersion = new Integer(KewApiConstants.DocumentContentVersions.NODAL); |
160 | |
@Column(name="INITR_PRNCPL_ID") |
161 | |
private java.lang.String initiatorWorkflowId; |
162 | |
@Column(name="RTE_PRNCPL_ID") |
163 | |
private java.lang.String routedByUserWorkflowId; |
164 | |
@Column(name="RTE_STAT_MDFN_DT") |
165 | |
private java.sql.Timestamp routeStatusDate; |
166 | |
@Column(name="RTE_LVL_MDFN_DT") |
167 | |
private java.sql.Timestamp routeLevelDate; |
168 | |
@Column(name="APP_DOC_STAT") |
169 | |
private java.lang.String appDocStatus; |
170 | |
@Column(name="APP_DOC_STAT_MDFN_DT") |
171 | |
private java.sql.Timestamp appDocStatusDate; |
172 | |
|
173 | |
@Id |
174 | |
@GeneratedValue(generator="KREW_DOC_HDR_S") |
175 | |
@GenericGenerator(name="KREW_DOC_HDR_S",strategy="org.hibernate.id.enhanced.SequenceStyleGenerator",parameters={ |
176 | |
@Parameter(name="sequence_name",value="KREW_DOC_HDR_S"), |
177 | |
@Parameter(name="value_column",value="id") |
178 | |
}) |
179 | |
@Column(name="DOC_HDR_ID") |
180 | |
private java.lang.String documentId; |
181 | |
|
182 | |
|
183 | |
|
184 | |
|
185 | |
|
186 | |
|
187 | |
|
188 | |
|
189 | |
|
190 | |
|
191 | |
|
192 | |
|
193 | |
|
194 | |
|
195 | |
|
196 | |
|
197 | |
|
198 | |
|
199 | |
|
200 | 0 | @OneToMany(fetch=FetchType.EAGER, cascade={CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, mappedBy="documentId") |
201 | |
|
202 | |
@OrderBy("statusTransitionId ASC") |
203 | |
@Fetch(value = FetchMode.SELECT) |
204 | |
private List<DocumentStatusTransition> appDocStatusHistory = new ArrayList<DocumentStatusTransition>(); |
205 | |
|
206 | 0 | @OneToMany(fetch=FetchType.LAZY, cascade={CascadeType.PERSIST, CascadeType.REMOVE}) |
207 | |
@JoinColumn(name="DOC_HDR_ID") |
208 | |
@OrderBy("noteId ASC") |
209 | |
private List<Note> notes = new ArrayList<Note>(); |
210 | |
|
211 | 0 | @Transient |
212 | |
private List<SearchableAttributeValue> searchableAttributeValues = new ArrayList<SearchableAttributeValue>(); |
213 | 0 | @Transient |
214 | |
private Collection queueItems = new ArrayList(); |
215 | 0 | @Transient |
216 | |
private boolean routingReport = false; |
217 | |
@Transient |
218 | |
private List<ActionRequestValue> simulatedActionRequests; |
219 | |
|
220 | |
private static final boolean FINAL_STATE = true; |
221 | |
protected static final HashMap<String,String> legalActions; |
222 | |
protected static final HashMap<String,String> stateTransitionMap; |
223 | |
|
224 | |
|
225 | 0 | @ManyToMany(fetch=FetchType.EAGER, cascade=CascadeType.REMOVE) |
226 | |
@JoinTable(name = "KREW_INIT_RTE_NODE_INSTN_T", joinColumns = @JoinColumn(name = "DOC_HDR_ID"), inverseJoinColumns = @JoinColumn(name = "RTE_NODE_INSTN_ID")) |
227 | |
@Fetch(value = FetchMode.SELECT) |
228 | |
private List<RouteNodeInstance> initialRouteNodeInstances = new ArrayList<RouteNodeInstance>(); |
229 | |
|
230 | |
static { |
231 | 0 | stateTransitionMap = new HashMap<String,String>(); |
232 | 0 | stateTransitionMap.put(KEWConstants.ROUTE_HEADER_INITIATED_CD, KEWConstants.ROUTE_HEADER_SAVED_CD + KEWConstants.ROUTE_HEADER_ENROUTE_CD + KEWConstants.ROUTE_HEADER_CANCEL_CD); |
233 | |
|
234 | 0 | stateTransitionMap.put(KEWConstants.ROUTE_HEADER_SAVED_CD, KEWConstants.ROUTE_HEADER_SAVED_CD + KEWConstants.ROUTE_HEADER_ENROUTE_CD + KEWConstants.ROUTE_HEADER_CANCEL_CD + KEWConstants.ROUTE_HEADER_PROCESSED_CD); |
235 | |
|
236 | 0 | stateTransitionMap.put(KEWConstants.ROUTE_HEADER_ENROUTE_CD, KEWConstants.ROUTE_HEADER_DISAPPROVED_CD + |
237 | |
KEWConstants.ROUTE_HEADER_CANCEL_CD + KEWConstants.ROUTE_HEADER_PROCESSED_CD + KEWConstants.ROUTE_HEADER_EXCEPTION_CD + KEWConstants.ROUTE_HEADER_SAVED_CD); |
238 | 0 | stateTransitionMap.put(KEWConstants.ROUTE_HEADER_DISAPPROVED_CD, ""); |
239 | 0 | stateTransitionMap.put(KEWConstants.ROUTE_HEADER_CANCEL_CD, ""); |
240 | 0 | stateTransitionMap.put(KEWConstants.ROUTE_HEADER_FINAL_CD, ""); |
241 | 0 | stateTransitionMap.put(KEWConstants.ROUTE_HEADER_EXCEPTION_CD, KEWConstants.ROUTE_HEADER_EXCEPTION_CD + KEWConstants.ROUTE_HEADER_ENROUTE_CD + KEWConstants.ROUTE_HEADER_CANCEL_CD + KEWConstants.ROUTE_HEADER_PROCESSED_CD + KEWConstants.ROUTE_HEADER_DISAPPROVED_CD + KEWConstants.ROUTE_HEADER_SAVED_CD); |
242 | 0 | stateTransitionMap.put(KEWConstants.ROUTE_HEADER_PROCESSED_CD, KEWConstants.ROUTE_HEADER_FINAL_CD + KEWConstants.ROUTE_HEADER_PROCESSED_CD); |
243 | |
|
244 | 0 | legalActions = new HashMap<String,String>(); |
245 | 0 | legalActions.put(KEWConstants.ROUTE_HEADER_INITIATED_CD, KEWConstants.ACTION_TAKEN_FYI_CD + KEWConstants.ACTION_TAKEN_ACKNOWLEDGED_CD + KEWConstants.ACTION_TAKEN_SAVED_CD + KEWConstants.ACTION_TAKEN_COMPLETED_CD + KEWConstants.ACTION_TAKEN_ROUTED_CD + KEWConstants.ACTION_TAKEN_CANCELED_CD + KEWConstants.ACTION_TAKEN_ADHOC_CD + KEWConstants.ACTION_TAKEN_ADHOC_REVOKED_CD + KEWConstants.ACTION_TAKEN_BLANKET_APPROVE_CD + KEWConstants.ACTION_TAKEN_MOVE_CD); |
246 | 0 | legalActions.put(KEWConstants.ROUTE_HEADER_SAVED_CD, KEWConstants.ACTION_TAKEN_FYI_CD + KEWConstants.ACTION_TAKEN_ACKNOWLEDGED_CD + KEWConstants.ACTION_TAKEN_SAVED_CD + KEWConstants.ACTION_TAKEN_COMPLETED_CD + KEWConstants.ACTION_TAKEN_ROUTED_CD + KEWConstants.ACTION_TAKEN_APPROVED_CD + KEWConstants.ACTION_TAKEN_CANCELED_CD + KEWConstants.ACTION_TAKEN_ADHOC_CD + KEWConstants.ACTION_TAKEN_ADHOC_REVOKED_CD + KEWConstants.ACTION_TAKEN_BLANKET_APPROVE_CD + KEWConstants.ACTION_TAKEN_MOVE_CD); |
247 | |
|
248 | |
|
249 | |
|
250 | 0 | legalActions.put(KEWConstants.ROUTE_HEADER_ENROUTE_CD, KEWConstants.ACTION_TAKEN_APPROVED_CD + KEWConstants.ACTION_TAKEN_ACKNOWLEDGED_CD + KEWConstants.ACTION_TAKEN_FYI_CD + KEWConstants.ACTION_TAKEN_ADHOC_CD + KEWConstants.ACTION_TAKEN_ADHOC_REVOKED_CD + KEWConstants.ACTION_TAKEN_BLANKET_APPROVE_CD + KEWConstants.ACTION_TAKEN_CANCELED_CD + KEWConstants.ACTION_TAKEN_COMPLETED_CD + KEWConstants.ACTION_TAKEN_DENIED_CD + KEWConstants.ACTION_TAKEN_SU_APPROVED_CD + KEWConstants.ACTION_TAKEN_SU_CANCELED_CD + KEWConstants.ACTION_TAKEN_SU_DISAPPROVED_CD + KEWConstants.ACTION_TAKEN_SU_ROUTE_LEVEL_APPROVED_CD + KEWConstants.ACTION_TAKEN_RETURNED_TO_PREVIOUS_CD + KEWConstants.ACTION_TAKEN_SU_RETURNED_TO_PREVIOUS_CD + KEWConstants.ACTION_TAKEN_MOVE_CD); |
251 | |
|
252 | |
|
253 | |
|
254 | 0 | legalActions.put(KEWConstants.ROUTE_HEADER_EXCEPTION_CD, KEWConstants.ACTION_TAKEN_FYI_CD + KEWConstants.ACTION_TAKEN_ACKNOWLEDGED_CD + KEWConstants.ACTION_TAKEN_ADHOC_CD + KEWConstants.ACTION_TAKEN_ADHOC_REVOKED_CD + KEWConstants.ACTION_TAKEN_APPROVED_CD + KEWConstants.ACTION_TAKEN_BLANKET_APPROVE_CD + KEWConstants.ACTION_TAKEN_CANCELED_CD + KEWConstants.ACTION_TAKEN_COMPLETED_CD + KEWConstants.ACTION_TAKEN_DENIED_CD + KEWConstants.ACTION_TAKEN_SU_APPROVED_CD + KEWConstants.ACTION_TAKEN_SU_CANCELED_CD + KEWConstants.ACTION_TAKEN_SU_DISAPPROVED_CD + KEWConstants.ACTION_TAKEN_SU_ROUTE_LEVEL_APPROVED_CD + KEWConstants.ACTION_TAKEN_RETURNED_TO_PREVIOUS_CD + KEWConstants.ACTION_TAKEN_SU_RETURNED_TO_PREVIOUS_CD + KEWConstants.ACTION_TAKEN_MOVE_CD); |
255 | 0 | legalActions.put(KEWConstants.ROUTE_HEADER_FINAL_CD, KEWConstants.ACTION_TAKEN_FYI_CD + KEWConstants.ACTION_TAKEN_ACKNOWLEDGED_CD + KEWConstants.ACTION_TAKEN_ADHOC_REVOKED_CD); |
256 | 0 | legalActions.put(KEWConstants.ROUTE_HEADER_CANCEL_CD, KEWConstants.ACTION_TAKEN_FYI_CD + KEWConstants.ACTION_TAKEN_ACKNOWLEDGED_CD + KEWConstants.ACTION_TAKEN_ADHOC_REVOKED_CD); |
257 | 0 | legalActions.put(KEWConstants.ROUTE_HEADER_DISAPPROVED_CD, KEWConstants.ACTION_TAKEN_FYI_CD + KEWConstants.ACTION_TAKEN_ACKNOWLEDGED_CD + KEWConstants.ACTION_TAKEN_ADHOC_REVOKED_CD); |
258 | 0 | legalActions.put(KEWConstants.ROUTE_HEADER_PROCESSED_CD, KEWConstants.ACTION_TAKEN_FYI_CD + KEWConstants.ACTION_TAKEN_ACKNOWLEDGED_CD + KEWConstants.ACTION_TAKEN_ADHOC_REVOKED_CD); |
259 | 0 | } |
260 | |
|
261 | 0 | public DocumentRouteHeaderValue() { |
262 | 0 | } |
263 | |
|
264 | |
public Principal getInitiatorPrincipal() { |
265 | |
|
266 | 0 | if (getInitiatorWorkflowId() == null) { |
267 | 0 | return null; |
268 | |
} |
269 | 0 | return KEWServiceLocator.getIdentityHelperService().getPrincipal(getInitiatorWorkflowId()); |
270 | |
} |
271 | |
|
272 | |
public Principal getRoutedByPrincipal() |
273 | |
{ |
274 | 0 | if (getRoutedByUserWorkflowId() == null) { |
275 | 0 | return null; |
276 | |
} |
277 | 0 | return KEWServiceLocator.getIdentityHelperService().getPrincipal(getRoutedByUserWorkflowId()); |
278 | |
} |
279 | |
|
280 | |
public String getInitiatorDisplayName() { |
281 | 0 | return KEWServiceLocator.getIdentityHelperService().getPerson(getInitiatorWorkflowId()).getName(); |
282 | |
} |
283 | |
|
284 | |
public String getRoutedByDisplayName() { |
285 | 0 | return KEWServiceLocator.getIdentityHelperService().getPerson(getRoutedByUserWorkflowId()).getName(); |
286 | |
} |
287 | |
|
288 | |
public String getCurrentRouteLevelName() { |
289 | 0 | String name = "Not Found"; |
290 | |
|
291 | 0 | if(routingReport){ |
292 | 0 | name = "Routing Report"; |
293 | 0 | } else if (CompatUtils.isRouteLevelDocument(this)) { |
294 | 0 | int routeLevelInt = getDocRouteLevel().intValue(); |
295 | 0 | LOG.info("Getting current route level name for a Route level document: " + routeLevelInt+CURRENT_ROUTE_NODE_NAME_DELIMITER+documentId); |
296 | 0 | List routeLevelNodes = CompatUtils.getRouteLevelCompatibleNodeList(getDocumentType()); |
297 | 0 | LOG.info("Route level compatible node list has " + routeLevelNodes.size() + " nodes"); |
298 | 0 | if (routeLevelInt < routeLevelNodes.size()) { |
299 | 0 | name = ((RouteNode)routeLevelNodes.get(routeLevelInt)).getRouteNodeName(); |
300 | |
} |
301 | 0 | } else { |
302 | 0 | name = ""; |
303 | 0 | for (Iterator<String> iterator = getCurrentNodeNames().iterator(); iterator.hasNext();) { |
304 | 0 | String nodeName = iterator.next(); |
305 | 0 | name += nodeName + (iterator.hasNext() ? CURRENT_ROUTE_NODE_NAME_DELIMITER : ""); |
306 | 0 | } |
307 | |
} |
308 | 0 | return name; |
309 | |
} |
310 | |
|
311 | |
public List<String> getCurrentNodeNames() { |
312 | 0 | List<String> currentNodeNames = new ArrayList<String>(); |
313 | 0 | Collection<RouteNodeInstance> nodeInstances = KEWServiceLocator.getRouteNodeService().getActiveNodeInstances(getDocumentId()); |
314 | 0 | if (nodeInstances.isEmpty()) { |
315 | 0 | nodeInstances = KEWServiceLocator.getRouteNodeService().getTerminalNodeInstances(getDocumentId()); |
316 | |
} |
317 | 0 | for (RouteNodeInstance nodeInstance : nodeInstances) { |
318 | 0 | currentNodeNames.add(nodeInstance.getRouteNode().getRouteNodeName()); |
319 | |
} |
320 | 0 | return currentNodeNames; |
321 | |
} |
322 | |
|
323 | |
public String getRouteStatusLabel() { |
324 | 0 | return CodeTranslator.getRouteStatusLabel(getDocRouteStatus()); |
325 | |
} |
326 | |
|
327 | |
public String getDocRouteStatusLabel() { |
328 | 0 | return CodeTranslator.getRouteStatusLabel(getDocRouteStatus()); |
329 | |
} |
330 | |
|
331 | |
|
332 | |
|
333 | |
|
334 | |
|
335 | |
|
336 | |
|
337 | |
|
338 | |
public String getDocStatusPolicy() { |
339 | 0 | return getDocumentType().getDocumentStatusPolicy().getPolicyStringValue(); |
340 | |
} |
341 | |
|
342 | |
public Collection getQueueItems() { |
343 | 0 | return queueItems; |
344 | |
} |
345 | |
|
346 | |
public void setQueueItems(Collection queueItems) { |
347 | 0 | this.queueItems = queueItems; |
348 | 0 | } |
349 | |
|
350 | |
public List<ActionItem> getActionItems() { |
351 | 0 | return (List<ActionItem>) KEWServiceLocator.getActionListService().findByDocumentId(documentId); |
352 | |
} |
353 | |
|
354 | |
public List<ActionTakenValue> getActionsTaken() { |
355 | 0 | return (List<ActionTakenValue>) KEWServiceLocator.getActionTakenService().findByDocumentId(documentId); |
356 | |
} |
357 | |
|
358 | |
public List<ActionRequestValue> getActionRequests() { |
359 | 0 | if (this.simulatedActionRequests == null || this.simulatedActionRequests.isEmpty()) { |
360 | 0 | return KEWServiceLocator.getActionRequestService().findAllActionRequestsByDocumentId(documentId); |
361 | |
} else { |
362 | 0 | return this.simulatedActionRequests; |
363 | |
} |
364 | |
} |
365 | |
|
366 | |
public List<ActionRequestValue> getSimulatedActionRequests() { |
367 | 0 | if (this.simulatedActionRequests == null) { |
368 | 0 | this.simulatedActionRequests = new ArrayList<ActionRequestValue>(); |
369 | |
} |
370 | 0 | return this.simulatedActionRequests; |
371 | |
} |
372 | |
|
373 | |
public void setSimulatedActionRequests(List<ActionRequestValue> simulatedActionRequests) { |
374 | 0 | this.simulatedActionRequests = simulatedActionRequests; |
375 | 0 | } |
376 | |
|
377 | |
public DocumentType getDocumentType() { |
378 | 0 | return KEWServiceLocator.getDocumentTypeService().findById(getDocumentTypeId()); |
379 | |
} |
380 | |
|
381 | |
public java.lang.String getAppDocId() { |
382 | 0 | return appDocId; |
383 | |
} |
384 | |
|
385 | |
public void setAppDocId(java.lang.String appDocId) { |
386 | 0 | this.appDocId = appDocId; |
387 | 0 | } |
388 | |
|
389 | |
public java.sql.Timestamp getApprovedDate() { |
390 | 0 | return approvedDate; |
391 | |
} |
392 | |
|
393 | |
public void setApprovedDate(java.sql.Timestamp approvedDate) { |
394 | 0 | this.approvedDate = approvedDate; |
395 | 0 | } |
396 | |
|
397 | |
public java.sql.Timestamp getCreateDate() { |
398 | 0 | return createDate; |
399 | |
} |
400 | |
|
401 | |
public void setCreateDate(java.sql.Timestamp createDate) { |
402 | 0 | this.createDate = createDate; |
403 | 0 | } |
404 | |
|
405 | |
public java.lang.String getDocContent() { |
406 | 0 | return getDocumentContent().getDocumentContent(); |
407 | |
} |
408 | |
|
409 | |
public void setDocContent(java.lang.String docContent) { |
410 | 0 | DocumentRouteHeaderValueContent content = getDocumentContent(); |
411 | 0 | content.setDocumentContent(docContent); |
412 | 0 | } |
413 | |
|
414 | |
public java.lang.Integer getDocRouteLevel() { |
415 | 0 | return docRouteLevel; |
416 | |
} |
417 | |
|
418 | |
public void setDocRouteLevel(java.lang.Integer docRouteLevel) { |
419 | 0 | this.docRouteLevel = docRouteLevel; |
420 | 0 | } |
421 | |
|
422 | |
public java.lang.String getDocRouteStatus() { |
423 | 0 | return docRouteStatus; |
424 | |
} |
425 | |
|
426 | |
public void setDocRouteStatus(java.lang.String docRouteStatus) { |
427 | 0 | this.docRouteStatus = docRouteStatus; |
428 | 0 | } |
429 | |
|
430 | |
public java.lang.String getDocTitle() { |
431 | 0 | return docTitle; |
432 | |
} |
433 | |
|
434 | |
public void setDocTitle(java.lang.String docTitle) { |
435 | 0 | this.docTitle = docTitle; |
436 | 0 | } |
437 | |
|
438 | |
@Override |
439 | |
public String getDocumentTypeId() { |
440 | 0 | return documentTypeId; |
441 | |
} |
442 | |
|
443 | |
public void setDocumentTypeId(String documentTypeId) { |
444 | 0 | this.documentTypeId = documentTypeId; |
445 | 0 | } |
446 | |
|
447 | |
public java.lang.Integer getDocVersion() { |
448 | 0 | return docVersion; |
449 | |
} |
450 | |
|
451 | |
public void setDocVersion(java.lang.Integer docVersion) { |
452 | 0 | this.docVersion = docVersion; |
453 | 0 | } |
454 | |
|
455 | |
public java.sql.Timestamp getFinalizedDate() { |
456 | 0 | return finalizedDate; |
457 | |
} |
458 | |
|
459 | |
public void setFinalizedDate(java.sql.Timestamp finalizedDate) { |
460 | 0 | this.finalizedDate = finalizedDate; |
461 | 0 | } |
462 | |
|
463 | |
public java.lang.String getInitiatorWorkflowId() { |
464 | 0 | return initiatorWorkflowId; |
465 | |
} |
466 | |
|
467 | |
public void setInitiatorWorkflowId(java.lang.String initiatorWorkflowId) { |
468 | 0 | this.initiatorWorkflowId = initiatorWorkflowId; |
469 | 0 | } |
470 | |
|
471 | |
public java.lang.String getRoutedByUserWorkflowId() { |
472 | 0 | if ( (isEnroute()) && (StringUtils.isBlank(routedByUserWorkflowId)) ) { |
473 | 0 | return initiatorWorkflowId; |
474 | |
} |
475 | 0 | return routedByUserWorkflowId; |
476 | |
} |
477 | |
|
478 | |
public void setRoutedByUserWorkflowId(java.lang.String routedByUserWorkflowId) { |
479 | 0 | this.routedByUserWorkflowId = routedByUserWorkflowId; |
480 | 0 | } |
481 | |
|
482 | |
@Override |
483 | |
public String getDocumentId() { |
484 | 0 | return documentId; |
485 | |
} |
486 | |
|
487 | |
public void setDocumentId(java.lang.String documentId) { |
488 | 0 | this.documentId = documentId; |
489 | 0 | } |
490 | |
|
491 | |
public java.sql.Timestamp getRouteLevelDate() { |
492 | 0 | return routeLevelDate; |
493 | |
} |
494 | |
|
495 | |
public void setRouteLevelDate(java.sql.Timestamp routeLevelDate) { |
496 | 0 | this.routeLevelDate = routeLevelDate; |
497 | 0 | } |
498 | |
|
499 | |
public java.sql.Timestamp getRouteStatusDate() { |
500 | 0 | return routeStatusDate; |
501 | |
} |
502 | |
|
503 | |
public void setRouteStatusDate(java.sql.Timestamp routeStatusDate) { |
504 | 0 | this.routeStatusDate = routeStatusDate; |
505 | 0 | } |
506 | |
|
507 | |
public java.sql.Timestamp getStatusModDate() { |
508 | 0 | return statusModDate; |
509 | |
} |
510 | |
|
511 | |
public void setStatusModDate(java.sql.Timestamp statusModDate) { |
512 | 0 | this.statusModDate = statusModDate; |
513 | 0 | } |
514 | |
|
515 | |
|
516 | |
|
517 | |
|
518 | |
|
519 | |
|
520 | |
|
521 | |
|
522 | |
|
523 | |
|
524 | |
|
525 | |
|
526 | |
public java.lang.String getAppDocStatus() { |
527 | 0 | if (appDocStatus == null || "".equals(appDocStatus)){ |
528 | 0 | return KEWConstants.UNKNOWN_STATUS; |
529 | |
} |
530 | 0 | return appDocStatus; |
531 | |
} |
532 | |
|
533 | |
public void setAppDocStatus(java.lang.String appDocStatus){ |
534 | 0 | this.appDocStatus = appDocStatus; |
535 | 0 | } |
536 | |
|
537 | |
|
538 | |
|
539 | |
|
540 | |
|
541 | |
|
542 | |
|
543 | |
public String getCombinedStatus(){ |
544 | 0 | String routeStatus = getRouteStatusLabel(); |
545 | 0 | String appStatus = getAppDocStatus(); |
546 | 0 | if (routeStatus != null && routeStatus.length()>0){ |
547 | 0 | if (appStatus.length() > 0){ |
548 | 0 | routeStatus += ", "+appStatus; |
549 | |
} |
550 | |
} else { |
551 | 0 | return appStatus; |
552 | |
} |
553 | 0 | return routeStatus; |
554 | |
} |
555 | |
|
556 | |
|
557 | |
|
558 | |
|
559 | |
|
560 | |
|
561 | |
|
562 | |
|
563 | |
|
564 | |
|
565 | |
public void updateAppDocStatus(java.lang.String appDocStatus) throws WorkflowRuntimeException{ |
566 | |
|
567 | 0 | if (appDocStatus != null && appDocStatus.length() > 0 && !appDocStatus.equalsIgnoreCase(this.appDocStatus)){ |
568 | 0 | DocumentType documentType = KEWServiceLocator.getDocumentTypeService().findById(this.getDocumentTypeId()); |
569 | 0 | if (documentType.getValidApplicationStatuses() != null && documentType.getValidApplicationStatuses().size() > 0){ |
570 | 0 | Iterator<ApplicationDocumentStatus> iter = documentType.getValidApplicationStatuses().iterator(); |
571 | 0 | boolean statusValidated = false; |
572 | 0 | while (iter.hasNext()) |
573 | |
{ |
574 | 0 | ApplicationDocumentStatus myAppDocStat = iter.next(); |
575 | 0 | if (appDocStatus.compareToIgnoreCase(myAppDocStat.getStatusName()) == 0) |
576 | |
{ |
577 | 0 | statusValidated = true; |
578 | 0 | break; |
579 | |
} |
580 | 0 | } |
581 | 0 | if (!statusValidated){ |
582 | 0 | WorkflowRuntimeException xpee = new WorkflowRuntimeException("AppDocStatus value " + appDocStatus + " not allowable."); |
583 | 0 | LOG.error("Error validating nextAppDocStatus name: " + appDocStatus + " against acceptable values.", xpee); |
584 | 0 | throw xpee; |
585 | |
} |
586 | |
} |
587 | |
|
588 | |
|
589 | 0 | String oldStatus = this.appDocStatus; |
590 | 0 | this.appDocStatus = appDocStatus; |
591 | |
|
592 | |
|
593 | 0 | setAppDocStatusDate(new Timestamp(System.currentTimeMillis())); |
594 | |
|
595 | |
|
596 | 0 | this.appDocStatusHistory.add(new DocumentStatusTransition(documentId, oldStatus, appDocStatus)); |
597 | |
} |
598 | |
|
599 | 0 | } |
600 | |
|
601 | |
|
602 | |
public java.sql.Timestamp getAppDocStatusDate() { |
603 | 0 | return appDocStatusDate; |
604 | |
} |
605 | |
|
606 | |
public void setAppDocStatusDate(java.sql.Timestamp appDocStatusDate) { |
607 | 0 | this.appDocStatusDate = appDocStatusDate; |
608 | 0 | } |
609 | |
|
610 | |
public Object copy(boolean preserveKeys) { |
611 | 0 | throw new UnsupportedOperationException("The copy method is deprecated and unimplemented!"); |
612 | |
} |
613 | |
|
614 | |
|
615 | |
|
616 | |
|
617 | |
public boolean isStateInitiated() { |
618 | 0 | return KEWConstants.ROUTE_HEADER_INITIATED_CD.equals(docRouteStatus); |
619 | |
} |
620 | |
|
621 | |
|
622 | |
|
623 | |
|
624 | |
public boolean isStateSaved() { |
625 | 0 | return KEWConstants.ROUTE_HEADER_SAVED_CD.equals(docRouteStatus); |
626 | |
} |
627 | |
|
628 | |
|
629 | |
|
630 | |
|
631 | |
public boolean isRouted() { |
632 | 0 | return !(isStateInitiated() || isStateSaved()); |
633 | |
} |
634 | |
|
635 | |
public boolean isInException() { |
636 | 0 | return KEWConstants.ROUTE_HEADER_EXCEPTION_CD.equals(docRouteStatus); |
637 | |
} |
638 | |
|
639 | |
public boolean isDisaproved() { |
640 | 0 | return KEWConstants.ROUTE_HEADER_DISAPPROVED_CD.equals(docRouteStatus); |
641 | |
} |
642 | |
|
643 | |
public boolean isCanceled() { |
644 | 0 | return KEWConstants.ROUTE_HEADER_CANCEL_CD.equals(docRouteStatus); |
645 | |
} |
646 | |
|
647 | |
public boolean isFinal() { |
648 | 0 | return KEWConstants.ROUTE_HEADER_FINAL_CD.equals(docRouteStatus); |
649 | |
} |
650 | |
|
651 | |
public boolean isEnroute() { |
652 | 0 | return KEWConstants.ROUTE_HEADER_ENROUTE_CD.equals(docRouteStatus); |
653 | |
} |
654 | |
|
655 | |
|
656 | |
|
657 | |
|
658 | |
public boolean isProcessed() { |
659 | 0 | return KEWConstants.ROUTE_HEADER_PROCESSED_CD.equals(docRouteStatus); |
660 | |
} |
661 | |
|
662 | |
public boolean isRoutable() { |
663 | 0 | return KEWConstants.ROUTE_HEADER_ENROUTE_CD.equals(docRouteStatus) || |
664 | |
|
665 | |
KEWConstants.ROUTE_HEADER_SAVED_CD.equals(docRouteStatus) || |
666 | |
KEWConstants.ROUTE_HEADER_PROCESSED_CD.equals(docRouteStatus); |
667 | |
} |
668 | |
|
669 | |
|
670 | |
|
671 | |
|
672 | |
|
673 | |
|
674 | |
|
675 | |
|
676 | |
public boolean isValidActionToTake(String actionCd) { |
677 | 0 | String actions = (String) legalActions.get(docRouteStatus); |
678 | 0 | if (!actions.contains(actionCd)) { |
679 | 0 | return false; |
680 | |
} else { |
681 | 0 | return true; |
682 | |
} |
683 | |
} |
684 | |
|
685 | |
public boolean isValidStatusChange(String newStatus) { |
686 | 0 | return ((String) stateTransitionMap.get(getDocRouteStatus())).contains(newStatus); |
687 | |
} |
688 | |
|
689 | |
public void setRouteStatus(String newStatus, boolean finalState) throws InvalidActionTakenException { |
690 | 0 | if (newStatus != getDocRouteStatus()) { |
691 | |
|
692 | 0 | setRouteStatusDate(new Timestamp(System.currentTimeMillis())); |
693 | |
} |
694 | 0 | if (((String) stateTransitionMap.get(getDocRouteStatus())).contains(newStatus)) { |
695 | 0 | LOG.debug("changing status"); |
696 | 0 | setDocRouteStatus(newStatus); |
697 | |
} else { |
698 | 0 | LOG.debug("unable to change status"); |
699 | 0 | throw new InvalidActionTakenException("Document status " + CodeTranslator.getRouteStatusLabel(getDocRouteStatus()) + " cannot transition to status " + CodeTranslator.getRouteStatusLabel(newStatus)); |
700 | |
} |
701 | 0 | setStatusModDate(new Timestamp(System.currentTimeMillis())); |
702 | 0 | if (finalState) { |
703 | 0 | LOG.debug("setting final timeStamp"); |
704 | 0 | setFinalizedDate(new Timestamp(System.currentTimeMillis())); |
705 | |
} |
706 | 0 | } |
707 | |
|
708 | |
|
709 | |
|
710 | |
|
711 | |
|
712 | |
|
713 | |
|
714 | |
public void markDocumentProcessed() throws InvalidActionTakenException { |
715 | 0 | LOG.debug(this + " marked processed"); |
716 | 0 | setRouteStatus(KEWConstants.ROUTE_HEADER_PROCESSED_CD, !FINAL_STATE); |
717 | 0 | } |
718 | |
|
719 | |
|
720 | |
|
721 | |
|
722 | |
|
723 | |
|
724 | |
|
725 | |
public void markDocumentCanceled() throws InvalidActionTakenException { |
726 | 0 | LOG.debug(this + " marked canceled"); |
727 | 0 | setRouteStatus(KEWConstants.ROUTE_HEADER_CANCEL_CD, FINAL_STATE); |
728 | 0 | } |
729 | |
|
730 | |
|
731 | |
|
732 | |
|
733 | |
|
734 | |
|
735 | |
|
736 | |
public void markDocumentDisapproved() throws InvalidActionTakenException { |
737 | 0 | LOG.debug(this + " marked disapproved"); |
738 | 0 | setRouteStatus(KEWConstants.ROUTE_HEADER_DISAPPROVED_CD, FINAL_STATE); |
739 | 0 | } |
740 | |
|
741 | |
|
742 | |
|
743 | |
|
744 | |
|
745 | |
|
746 | |
|
747 | |
public void markDocumentSaved() throws InvalidActionTakenException { |
748 | 0 | LOG.debug(this + " marked saved"); |
749 | 0 | setRouteStatus(KEWConstants.ROUTE_HEADER_SAVED_CD, !FINAL_STATE); |
750 | 0 | } |
751 | |
|
752 | |
|
753 | |
|
754 | |
|
755 | |
|
756 | |
|
757 | |
|
758 | |
public void markDocumentInException() throws InvalidActionTakenException { |
759 | 0 | LOG.debug(this + " marked in exception"); |
760 | 0 | setRouteStatus(KEWConstants.ROUTE_HEADER_EXCEPTION_CD, !FINAL_STATE); |
761 | 0 | } |
762 | |
|
763 | |
|
764 | |
|
765 | |
|
766 | |
|
767 | |
|
768 | |
|
769 | |
public void markDocumentEnroute() throws InvalidActionTakenException { |
770 | 0 | LOG.debug(this + " marked enroute"); |
771 | 0 | setRouteStatus(KEWConstants.ROUTE_HEADER_ENROUTE_CD, !FINAL_STATE); |
772 | 0 | } |
773 | |
|
774 | |
|
775 | |
|
776 | |
|
777 | |
|
778 | |
|
779 | |
|
780 | |
public void markDocumentFinalized() throws InvalidActionTakenException { |
781 | 0 | LOG.debug(this + " marked finalized"); |
782 | 0 | setRouteStatus(KEWConstants.ROUTE_HEADER_FINAL_CD, FINAL_STATE); |
783 | 0 | } |
784 | |
|
785 | |
|
786 | |
|
787 | |
|
788 | |
|
789 | |
|
790 | |
public void setRouteHeaderData(RouteHeaderDTO routeHeaderVO) throws WorkflowException { |
791 | 0 | if (!ObjectUtils.equals(getDocTitle(), routeHeaderVO.getDocTitle())) { |
792 | 0 | KEWServiceLocator.getActionListService().updateActionItemsForTitleChange(getDocumentId(), routeHeaderVO.getDocTitle()); |
793 | |
} |
794 | 0 | setDocTitle(routeHeaderVO.getDocTitle()); |
795 | 0 | setAppDocId(routeHeaderVO.getAppDocId()); |
796 | 0 | setStatusModDate(new Timestamp(System.currentTimeMillis())); |
797 | 0 | updateAppDocStatus(routeHeaderVO.getAppDocStatus()); |
798 | |
|
799 | |
|
800 | 0 | List<KeyValue> variables = routeHeaderVO.getVariables(); |
801 | 0 | for (KeyValue kvp : variables) { |
802 | 0 | setVariable(kvp.getKey(), kvp.getValue()); |
803 | |
} |
804 | 0 | } |
805 | |
|
806 | |
public void applyDocumentUpdate(DocumentUpdate documentUpdate) { |
807 | 0 | if (documentUpdate != null) { |
808 | 0 | String thisDocTitle = getDocTitle() == null ? "" : getDocTitle(); |
809 | 0 | String updateDocTitle = documentUpdate.getTitle() == null ? "" : documentUpdate.getTitle(); |
810 | 0 | if (!StringUtils.equals(thisDocTitle, updateDocTitle)) { |
811 | 0 | KEWServiceLocator.getActionListService().updateActionItemsForTitleChange(getDocumentId(), documentUpdate.getTitle()); |
812 | |
} |
813 | 0 | setDocTitle(updateDocTitle); |
814 | 0 | setAppDocId(documentUpdate.getApplicationDocumentId()); |
815 | 0 | setStatusModDate(new Timestamp(System.currentTimeMillis())); |
816 | 0 | updateAppDocStatus(documentUpdate.getApplicationDocumentStatus()); |
817 | |
|
818 | 0 | Map<String, String> variables = documentUpdate.getVariables(); |
819 | 0 | for (String variableName : variables.keySet()) { |
820 | 0 | setVariable(variableName, variables.get(variableName)); |
821 | |
} |
822 | |
} |
823 | 0 | } |
824 | |
|
825 | |
|
826 | |
|
827 | |
|
828 | |
|
829 | |
public Branch getRootBranch() { |
830 | 0 | if (!this.initialRouteNodeInstances.isEmpty()) { |
831 | 0 | return ((RouteNodeInstance) getInitialRouteNodeInstance(0)).getBranch(); |
832 | |
} |
833 | 0 | return null; |
834 | |
} |
835 | |
|
836 | |
|
837 | |
|
838 | |
|
839 | |
|
840 | |
private BranchState findVariable(String name) { |
841 | 0 | Branch rootBranch = getRootBranch(); |
842 | 0 | if (rootBranch != null) { |
843 | 0 | List<BranchState> branchState = rootBranch.getBranchState(); |
844 | 0 | Iterator<BranchState> it = branchState.iterator(); |
845 | 0 | while (it.hasNext()) { |
846 | 0 | BranchState state = it.next(); |
847 | 0 | if (ObjectUtils.equals(state.getKey(), BranchState.VARIABLE_PREFIX + name)) { |
848 | 0 | return state; |
849 | |
} |
850 | 0 | } |
851 | |
} |
852 | 0 | return null; |
853 | |
} |
854 | |
|
855 | |
|
856 | |
|
857 | |
|
858 | |
|
859 | |
|
860 | |
public String getVariable(String name) { |
861 | 0 | BranchState state = findVariable(name); |
862 | 0 | if (state == null) { |
863 | 0 | LOG.debug("Variable not found: '" + name + "'"); |
864 | 0 | return null; |
865 | |
} |
866 | 0 | return state.getValue(); |
867 | |
} |
868 | |
|
869 | |
public void removeVariableThatContains(String name) { |
870 | 0 | List<BranchState> statesToRemove = new ArrayList<BranchState>(); |
871 | 0 | for (BranchState state : this.getRootBranchState()) { |
872 | 0 | if (state.getKey().contains(name)) { |
873 | 0 | statesToRemove.add(state); |
874 | |
} |
875 | |
} |
876 | 0 | this.getRootBranchState().removeAll(statesToRemove); |
877 | 0 | } |
878 | |
|
879 | |
|
880 | |
|
881 | |
|
882 | |
|
883 | |
|
884 | |
public void setVariable(String name, String value) { |
885 | 0 | BranchState state = findVariable(name); |
886 | 0 | Branch rootBranch = getRootBranch(); |
887 | 0 | if (rootBranch != null) { |
888 | 0 | List<BranchState> branchState = rootBranch.getBranchState(); |
889 | 0 | if (state == null) { |
890 | 0 | if (value == null) { |
891 | 0 | LOG.debug("set non existent variable '" + name + "' to null value"); |
892 | 0 | return; |
893 | |
} |
894 | 0 | LOG.debug("Adding branch state: '" + name + "'='" + value + "'"); |
895 | 0 | state = new BranchState(); |
896 | 0 | state.setBranch(rootBranch); |
897 | 0 | state.setKey(BranchState.VARIABLE_PREFIX + name); |
898 | 0 | state.setValue(value); |
899 | 0 | rootBranch.addBranchState(state); |
900 | |
} else { |
901 | 0 | if (value == null) { |
902 | 0 | LOG.debug("Removing value: " + state.getKey() + "=" + state.getValue()); |
903 | 0 | branchState.remove(state); |
904 | |
} else { |
905 | 0 | LOG.debug("Setting value of variable '" + name + "' to '" + value + "'"); |
906 | 0 | state.setValue(value); |
907 | |
} |
908 | |
} |
909 | |
} |
910 | 0 | } |
911 | |
|
912 | |
public List<BranchState> getRootBranchState() { |
913 | 0 | if (this.getRootBranch() != null) { |
914 | 0 | return this.getRootBranch().getBranchState(); |
915 | |
} |
916 | 0 | return null; |
917 | |
} |
918 | |
|
919 | |
public CustomActionListAttribute getCustomActionListAttribute() throws WorkflowException { |
920 | 0 | CustomActionListAttribute customActionListAttribute = null; |
921 | 0 | if (this.getDocumentType() != null) { |
922 | 0 | customActionListAttribute = this.getDocumentType().getCustomActionListAttribute(); |
923 | 0 | if (customActionListAttribute != null) { |
924 | 0 | return customActionListAttribute; |
925 | |
} |
926 | |
} |
927 | 0 | customActionListAttribute = new DefaultCustomActionListAttribute(); |
928 | 0 | return customActionListAttribute; |
929 | |
} |
930 | |
|
931 | |
public CustomEmailAttribute getCustomEmailAttribute() throws WorkflowException { |
932 | 0 | CustomEmailAttribute customEmailAttribute = null; |
933 | |
try { |
934 | 0 | if (this.getDocumentType() != null) { |
935 | 0 | customEmailAttribute = this.getDocumentType().getCustomEmailAttribute(); |
936 | 0 | if (customEmailAttribute != null) { |
937 | 0 | customEmailAttribute.setRouteHeaderVO(DTOConverter.convertRouteHeader(this, null)); |
938 | 0 | return customEmailAttribute; |
939 | |
} |
940 | |
} |
941 | 0 | } catch (Exception e) { |
942 | 0 | LOG.debug("Error in retrieving custom email attribute", e); |
943 | 0 | } |
944 | 0 | customEmailAttribute = new CustomEmailAttributeImpl(); |
945 | 0 | customEmailAttribute.setRouteHeaderVO(DTOConverter.convertRouteHeader(this, null)); |
946 | 0 | return customEmailAttribute; |
947 | |
} |
948 | |
|
949 | |
public CustomNoteAttribute getCustomNoteAttribute() throws WorkflowException |
950 | |
{ |
951 | 0 | CustomNoteAttribute customNoteAttribute = null; |
952 | |
try { |
953 | 0 | if (this.getDocumentType() != null) { |
954 | 0 | customNoteAttribute = this.getDocumentType().getCustomNoteAttribute(); |
955 | 0 | if (customNoteAttribute != null) { |
956 | 0 | customNoteAttribute.setRouteHeaderVO(DTOConverter.convertRouteHeader(this, null)); |
957 | 0 | return customNoteAttribute; |
958 | |
} |
959 | |
} |
960 | 0 | } catch (Exception e) { |
961 | 0 | LOG.debug("Error in retrieving custom note attribute", e); |
962 | 0 | } |
963 | 0 | customNoteAttribute = new CustomNoteAttributeImpl(); |
964 | 0 | customNoteAttribute.setRouteHeaderVO(DTOConverter.convertRouteHeader(this, null)); |
965 | 0 | return customNoteAttribute; |
966 | |
} |
967 | |
|
968 | |
public ActionRequestValue getDocActionRequest(int index) { |
969 | 0 | List<ActionRequestValue> actionRequests = getActionRequests(); |
970 | 0 | while (actionRequests.size() <= index) { |
971 | 0 | ActionRequestValue actionRequest = new ActionRequestFactory(this).createBlankActionRequest(); |
972 | 0 | actionRequest.setNodeInstance(new RouteNodeInstance()); |
973 | 0 | actionRequests.add(actionRequest); |
974 | 0 | } |
975 | 0 | return (ActionRequestValue) actionRequests.get(index); |
976 | |
} |
977 | |
|
978 | |
public ActionTakenValue getDocActionTaken(int index) { |
979 | 0 | List<ActionTakenValue> actionsTaken = getActionsTaken(); |
980 | 0 | while (actionsTaken.size() <= index) { |
981 | 0 | actionsTaken.add(new ActionTakenValue()); |
982 | |
} |
983 | 0 | return (ActionTakenValue) actionsTaken.get(index); |
984 | |
} |
985 | |
|
986 | |
public ActionItem getDocActionItem(int index) { |
987 | 0 | List<ActionItem> actionItems = getActionItems(); |
988 | 0 | while (actionItems.size() <= index) { |
989 | 0 | actionItems.add(new ActionItem()); |
990 | |
} |
991 | 0 | return (ActionItem) actionItems.get(index); |
992 | |
} |
993 | |
|
994 | |
private RouteNodeInstance getInitialRouteNodeInstance(int index) { |
995 | 0 | if (initialRouteNodeInstances.size() >= index) { |
996 | 0 | return (RouteNodeInstance) initialRouteNodeInstances.get(index); |
997 | |
} |
998 | 0 | return null; |
999 | |
} |
1000 | |
|
1001 | |
|
1002 | |
|
1003 | |
|
1004 | |
|
1005 | |
|
1006 | |
|
1007 | |
|
1008 | |
|
1009 | |
|
1010 | |
|
1011 | |
|
1012 | |
|
1013 | |
|
1014 | |
|
1015 | |
public boolean isRoutingReport() { |
1016 | 0 | return routingReport; |
1017 | |
} |
1018 | |
|
1019 | |
public void setRoutingReport(boolean routingReport) { |
1020 | 0 | this.routingReport = routingReport; |
1021 | 0 | } |
1022 | |
|
1023 | |
public List<RouteNodeInstance> getInitialRouteNodeInstances() { |
1024 | 0 | return initialRouteNodeInstances; |
1025 | |
} |
1026 | |
|
1027 | |
public void setInitialRouteNodeInstances(List<RouteNodeInstance> initialRouteNodeInstances) { |
1028 | 0 | this.initialRouteNodeInstances = initialRouteNodeInstances; |
1029 | 0 | } |
1030 | |
|
1031 | |
public List<Note> getNotes() { |
1032 | 0 | return notes; |
1033 | |
} |
1034 | |
|
1035 | |
public void setNotes(List<Note> notes) { |
1036 | 0 | this.notes = notes; |
1037 | 0 | } |
1038 | |
|
1039 | |
public DocumentRouteHeaderValueContent getDocumentContent() { |
1040 | 0 | if (documentContent == null) { |
1041 | 0 | documentContent = KEWServiceLocator.getRouteHeaderService().getContent(getDocumentId()); |
1042 | |
} |
1043 | 0 | return documentContent; |
1044 | |
} |
1045 | |
|
1046 | |
public void setDocumentContent(DocumentRouteHeaderValueContent documentContent) { |
1047 | 0 | this.documentContent = documentContent; |
1048 | 0 | } |
1049 | |
|
1050 | |
public List<DocumentStatusTransition> getAppDocStatusHistory() { |
1051 | 0 | return this.appDocStatusHistory; |
1052 | |
} |
1053 | |
|
1054 | |
public void setAppDocStatusHistory( |
1055 | |
List<DocumentStatusTransition> appDocStatusHistory) { |
1056 | 0 | this.appDocStatusHistory = appDocStatusHistory; |
1057 | 0 | } |
1058 | |
|
1059 | |
@Override |
1060 | |
public DocumentStatus getStatus() { |
1061 | 0 | return DocumentStatus.fromCode(getDocRouteStatus()); |
1062 | |
} |
1063 | |
|
1064 | |
@Override |
1065 | |
public DateTime getDateCreated() { |
1066 | 0 | if (getCreateDate() == null) { |
1067 | 0 | return null; |
1068 | |
} |
1069 | 0 | return new DateTime(getCreateDate().getTime()); |
1070 | |
} |
1071 | |
|
1072 | |
@Override |
1073 | |
public DateTime getDateLastModified() { |
1074 | 0 | if (getStatusModDate() == null) { |
1075 | 0 | return null; |
1076 | |
} |
1077 | 0 | return new DateTime(getStatusModDate().getTime()); |
1078 | |
} |
1079 | |
|
1080 | |
@Override |
1081 | |
public DateTime getDateApproved() { |
1082 | 0 | if (getApprovedDate() == null) { |
1083 | 0 | return null; |
1084 | |
} |
1085 | 0 | return new DateTime(getApprovedDate().getTime()); |
1086 | |
} |
1087 | |
|
1088 | |
@Override |
1089 | |
public DateTime getDateFinalized() { |
1090 | 0 | if (getFinalizedDate() == null) { |
1091 | 0 | return null; |
1092 | |
} |
1093 | 0 | return new DateTime(getFinalizedDate().getTime()); |
1094 | |
} |
1095 | |
|
1096 | |
@Override |
1097 | |
public String getTitle() { |
1098 | 0 | return docTitle; |
1099 | |
} |
1100 | |
|
1101 | |
@Override |
1102 | |
public String getApplicationDocumentId() { |
1103 | 0 | return appDocId; |
1104 | |
} |
1105 | |
|
1106 | |
@Override |
1107 | |
public String getInitiatorPrincipalId() { |
1108 | 0 | return initiatorWorkflowId; |
1109 | |
} |
1110 | |
|
1111 | |
@Override |
1112 | |
public String getRoutedByPrincipalId() { |
1113 | 0 | return routedByUserWorkflowId; |
1114 | |
} |
1115 | |
|
1116 | |
@Override |
1117 | |
public String getDocumentTypeName() { |
1118 | 0 | return getDocumentType().getName(); |
1119 | |
} |
1120 | |
|
1121 | |
@Override |
1122 | |
public String getDocumentHandlerUrl() { |
1123 | 0 | return getDocumentType().getDocHandlerUrl(); |
1124 | |
} |
1125 | |
|
1126 | |
@Override |
1127 | |
public String getApplicationDocumentStatus() { |
1128 | 0 | return appDocStatus; |
1129 | |
} |
1130 | |
|
1131 | |
@Override |
1132 | |
public DateTime getApplicationDocumentStatusDate() { |
1133 | 0 | if (appDocStatusDate == null) { |
1134 | 0 | return null; |
1135 | |
} |
1136 | 0 | return new DateTime(appDocStatusDate.getTime()); |
1137 | |
} |
1138 | |
|
1139 | |
@Override |
1140 | |
public Map<String, String> getVariables() { |
1141 | 0 | Map<String, String> documentVariables = new HashMap<String, String>(); |
1142 | |
|
1143 | |
|
1144 | 0 | Branch routeNodeInstanceBranch = getRootBranch(); |
1145 | |
|
1146 | |
|
1147 | 0 | if (routeNodeInstanceBranch != null) { |
1148 | 0 | List<BranchState> listOfBranchStates = routeNodeInstanceBranch.getBranchState(); |
1149 | 0 | for (BranchState bs : listOfBranchStates) { |
1150 | 0 | if (bs.getKey() != null && bs.getKey().startsWith(BranchState.VARIABLE_PREFIX)) { |
1151 | 0 | LOG.debug("Setting branch state variable on vo: " + bs.getKey() + "=" + bs.getValue()); |
1152 | 0 | documentVariables.put(bs.getKey().substring(BranchState.VARIABLE_PREFIX.length()), bs.getValue()); |
1153 | |
} |
1154 | |
} |
1155 | |
} |
1156 | 0 | return documentVariables; |
1157 | |
} |
1158 | |
|
1159 | |
public static Document to(DocumentRouteHeaderValue documentBo) { |
1160 | 0 | if (documentBo == null) { |
1161 | 0 | return null; |
1162 | |
} |
1163 | 0 | Document.Builder builder = Document.Builder.create(documentBo); |
1164 | 0 | return builder.build(); |
1165 | |
} |
1166 | |
|
1167 | |
public static DocumentRouteHeaderValue from(Document document) { |
1168 | 0 | DocumentRouteHeaderValue documentBo = new DocumentRouteHeaderValue(); |
1169 | 0 | documentBo.setAppDocId(document.getApplicationDocumentId()); |
1170 | 0 | if (document.getDateApproved() != null) { |
1171 | 0 | documentBo.setApprovedDate(new Timestamp(document.getDateApproved().getMillis())); |
1172 | |
} |
1173 | 0 | documentBo.setCreateDate(new Timestamp(document.getDateApproved().getMillis())); |
1174 | 0 | if (StringUtils.isEmpty(documentBo.getDocContent())) { |
1175 | 0 | documentBo.setDocContent(KEWConstants.DEFAULT_DOCUMENT_CONTENT); |
1176 | |
} |
1177 | 0 | documentBo.setDocRouteStatus(document.getStatus().getCode()); |
1178 | 0 | documentBo.setDocTitle(document.getTitle()); |
1179 | 0 | if (document.getDocumentTypeName() != null) { |
1180 | 0 | DocumentType documentType = KEWServiceLocator.getDocumentTypeService().findByName(document.getDocumentTypeName()); |
1181 | 0 | if (documentType == null) { |
1182 | 0 | throw new RiceRuntimeException("Could not locate the given document type name: " + document.getDocumentTypeName()); |
1183 | |
} |
1184 | 0 | documentBo.setDocumentTypeId(documentType.getDocumentTypeId()); |
1185 | |
} |
1186 | 0 | if (document.getDateFinalized() != null) { |
1187 | 0 | documentBo.setFinalizedDate(new Timestamp(document.getDateFinalized().getMillis())); |
1188 | |
} |
1189 | 0 | documentBo.setInitiatorWorkflowId(document.getInitiatorPrincipalId()); |
1190 | 0 | documentBo.setRoutedByUserWorkflowId(document.getRoutedByPrincipalId()); |
1191 | 0 | documentBo.setDocumentId(document.getDocumentId()); |
1192 | 0 | if (document.getDateLastModified() != null) { |
1193 | 0 | documentBo.setStatusModDate(new Timestamp(document.getDateLastModified().getMillis())); |
1194 | |
} |
1195 | 0 | documentBo.setAppDocStatus(document.getApplicationDocumentStatus()); |
1196 | 0 | if (document.getApplicationDocumentStatusDate() != null) { |
1197 | 0 | documentBo.setAppDocStatusDate(new Timestamp(document.getApplicationDocumentStatusDate().getMillis())); |
1198 | |
} |
1199 | |
|
1200 | |
|
1201 | |
|
1202 | 0 | Map<String, String> variables = document.getVariables(); |
1203 | 0 | if( variables != null && !variables.isEmpty()){ |
1204 | 0 | for(String kvp : variables.keySet()){ |
1205 | 0 | documentBo.setVariable(kvp, variables.get(kvp)); |
1206 | |
} |
1207 | |
} |
1208 | |
|
1209 | 0 | return documentBo; |
1210 | |
} |
1211 | |
|
1212 | |
} |