Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
WorkflowDocument |
|
| 1.8482142857142858;1.848 |
1 | /* | |
2 | * Copyright 2005-2007 The Kuali Foundation | |
3 | * | |
4 | * | |
5 | * Licensed under the Educational Community License, Version 2.0 (the "License"); | |
6 | * you may not use this file except in compliance with the License. | |
7 | * You may obtain a copy of the License at | |
8 | * | |
9 | * http://www.opensource.org/licenses/ecl2.php | |
10 | * | |
11 | * Unless required by applicable law or agreed to in writing, software | |
12 | * distributed under the License is distributed on an "AS IS" BASIS, | |
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
14 | * See the License for the specific language governing permissions and | |
15 | * limitations under the License. | |
16 | */ | |
17 | package org.kuali.rice.kew.service; | |
18 | ||
19 | import java.sql.Timestamp; | |
20 | import java.util.ArrayList; | |
21 | import java.util.Calendar; | |
22 | import java.util.List; | |
23 | ||
24 | import org.kuali.rice.core.api.exception.RiceRuntimeException; | |
25 | import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader; | |
26 | import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader; | |
27 | import org.kuali.rice.kew.dto.ActionRequestDTO; | |
28 | import org.kuali.rice.kew.dto.ActionTakenDTO; | |
29 | import org.kuali.rice.kew.dto.AdHocRevokeDTO; | |
30 | import org.kuali.rice.kew.dto.DocumentContentDTO; | |
31 | import org.kuali.rice.kew.dto.DocumentDetailDTO; | |
32 | import org.kuali.rice.kew.dto.DocumentLinkDTO; | |
33 | import org.kuali.rice.kew.dto.EmplIdDTO; | |
34 | import org.kuali.rice.kew.dto.ModifiableDocumentContentDTO; | |
35 | import org.kuali.rice.kew.dto.MovePointDTO; | |
36 | import org.kuali.rice.kew.dto.NetworkIdDTO; | |
37 | import org.kuali.rice.kew.dto.NoteDTO; | |
38 | import org.kuali.rice.kew.dto.ReturnPointDTO; | |
39 | import org.kuali.rice.kew.dto.RouteHeaderDTO; | |
40 | import org.kuali.rice.kew.dto.RouteNodeInstanceDTO; | |
41 | import org.kuali.rice.kew.dto.UserIdDTO; | |
42 | import org.kuali.rice.kew.dto.WorkflowAttributeDefinitionDTO; | |
43 | import org.kuali.rice.kew.dto.WorkflowAttributeValidationErrorDTO; | |
44 | import org.kuali.rice.kew.dto.WorkflowIdDTO; | |
45 | import org.kuali.rice.kew.exception.WorkflowException; | |
46 | import org.kuali.rice.kew.exception.WorkflowRuntimeException; | |
47 | import org.kuali.rice.kew.util.KEWConstants; | |
48 | import org.kuali.rice.kim.bo.Person; | |
49 | import org.kuali.rice.kim.bo.entity.KimPrincipal; | |
50 | import org.kuali.rice.kim.service.IdentityManagementService; | |
51 | import org.kuali.rice.kim.service.PersonService; | |
52 | import org.kuali.rice.kim.util.KimConstants; | |
53 | ||
54 | /** | |
55 | * Represents a document in Workflow from the perspective of the client. This class is one of two | |
56 | * (Java) client interfaces to the KEW system (the other being {@link WorkflowInfo} class). The | |
57 | * first time an instance of this class is created, it will read the client configuration to determine | |
58 | * how to connect to KEW. | |
59 | * | |
60 | * <p>This class is used by creating new instances using the appropriate constructor. To create a new | |
61 | * document in KEW, create an instance of this class passing a UserIdVO and a | |
62 | * document type name. To load an existing document, create an instance of this class passing a | |
63 | * UserIdVO and a document ID number. | |
64 | * | |
65 | * <p>Internally, this wrapper interacts with the {@link WorkflowDocumentActions} service exported | |
66 | * over the KSB, maintaining state. | |
67 | * | |
68 | * <p>This class is not thread safe and must by synchronized externally for concurrent access. | |
69 | * | |
70 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
71 | */ | |
72 | public class WorkflowDocument implements java.io.Serializable { | |
73 | ||
74 | private static final long serialVersionUID = -3672966990721719088L; | |
75 | ||
76 | /** | |
77 | * The principal ID of the user as whom actions will be taken on the KEW document | |
78 | */ | |
79 | private String principalId; | |
80 | /** | |
81 | * RouteHeader VO of the KEW document this WorkflowDocument represents | |
82 | */ | |
83 | private RouteHeaderDTO routeHeader; | |
84 | /** | |
85 | * Flag that indicates whether the document content currently loaded needs to be refreshed. | |
86 | * This is the case either if the document content has not yet been loaded, or an action | |
87 | * that might possibly affect the document content (which is potentially any action) has | |
88 | * subsequently been taken on the document through this API. | |
89 | */ | |
90 | 0 | private boolean documentContentDirty = false; |
91 | /** | |
92 | * Value Object encapsulating the document content | |
93 | */ | |
94 | private ModifiableDocumentContentDTO documentContent; | |
95 | ||
96 | /** | |
97 | * @deprecated Use the constructor which takes a principal ID instead. | |
98 | */ | |
99 | 0 | public WorkflowDocument(UserIdDTO userId, String documentType) throws WorkflowException { |
100 | 0 | String principalId = convertUserIdToPrincipalId(userId); |
101 | 0 | init(principalId, documentType, null); |
102 | 0 | } |
103 | ||
104 | /** | |
105 | * @deprecated Use the constructor which takes a principal ID instead. | |
106 | */ | |
107 | 0 | public WorkflowDocument(UserIdDTO userId, Long routeHeaderId) throws WorkflowException { |
108 | 0 | String principalId = convertUserIdToPrincipalId(userId); |
109 | 0 | init(principalId, null, routeHeaderId); |
110 | 0 | } |
111 | ||
112 | private String convertUserIdToPrincipalId(UserIdDTO userId) { | |
113 | ||
114 | 0 | if (userId == null) { |
115 | 0 | return null; |
116 | 0 | } else if (userId instanceof WorkflowIdDTO) { |
117 | 0 | return ((WorkflowIdDTO)userId).getWorkflowId(); |
118 | 0 | } else if (userId instanceof NetworkIdDTO) { |
119 | 0 | IdentityManagementService identityManagementService = (IdentityManagementService)GlobalResourceLoader.getService(KimConstants.KIM_IDENTITY_MANAGEMENT_SERVICE); |
120 | 0 | String principalName = ((NetworkIdDTO)userId).getNetworkId(); |
121 | 0 | KimPrincipal principal = identityManagementService.getPrincipalByPrincipalName(principalName); |
122 | 0 | return principal.getPrincipalId(); |
123 | 0 | } else if (userId instanceof EmplIdDTO) { |
124 | 0 | PersonService personService = (PersonService)GlobalResourceLoader.getService(KimConstants.KIM_PERSON_SERVICE); |
125 | 0 | String employeeId = ((EmplIdDTO)userId).getEmplId(); |
126 | 0 | Person person = personService.getPersonByEmployeeId(employeeId); |
127 | 0 | if (person == null) { |
128 | 0 | throw new RiceRuntimeException("Could not locate a person with the given employee id of " + employeeId); |
129 | } | |
130 | 0 | return person.getPrincipalId(); |
131 | } | |
132 | 0 | throw new IllegalArgumentException("Invalid UserIdDTO type was passed: " + userId); |
133 | } | |
134 | ||
135 | /** | |
136 | * Constructs a WorkflowDocument representing a new document in the workflow system. | |
137 | * Creation/committing of the new document is deferred until the first action is | |
138 | * taken on the document. | |
139 | * @param principalId the user as which to take actions on the document | |
140 | * @param documentType the type of the document to create | |
141 | * @throws WorkflowException if anything goes awry | |
142 | */ | |
143 | 0 | public WorkflowDocument(String principalId, String documentType) throws WorkflowException { |
144 | 0 | init(principalId, documentType, null); |
145 | 0 | } |
146 | ||
147 | /** | |
148 | * Loads a workflow document with the given route header ID for the given User. If no document | |
149 | * can be found with the given ID, then the {@link getRouteHeader()} method of the WorkflowDocument | |
150 | * which is created will return null. | |
151 | * | |
152 | * @throws WorkflowException if there is a problem loading the WorkflowDocument | |
153 | */ | |
154 | 0 | public WorkflowDocument(String principalId, Long routeHeaderId) throws WorkflowException { |
155 | 0 | init(principalId, null, routeHeaderId); |
156 | 0 | } |
157 | ||
158 | /** | |
159 | * Initializes this WorkflowDocument object, by either attempting to load an existing document by routeHeaderid | |
160 | * if one is supplied (non-null), or by constructing an empty document of the specified type. | |
161 | * @param principalId the user under which actions via this API on the specified document will be taken | |
162 | * @param documentType the type of document this WorkflowDocument should represent (either this parameter or routeHeaderId must be specified, non-null) | |
163 | * @param routeHeaderId the id of an existing document to load (either this parameter or documentType must be specified, non-null) | |
164 | * @throws WorkflowException if a routeHeaderId is specified but an exception occurs trying to load the document route header | |
165 | */ | |
166 | private void init(String principalId, String documentType, Long routeHeaderId) throws WorkflowException { | |
167 | 0 | this.principalId = principalId; |
168 | 0 | routeHeader = new RouteHeaderDTO(); |
169 | 0 | routeHeader.setDocTypeName(documentType); |
170 | 0 | if (routeHeaderId != null) { |
171 | 0 | routeHeader = getWorkflowUtility().getRouteHeaderWithPrincipal(principalId, routeHeaderId); |
172 | } | |
173 | 0 | } |
174 | ||
175 | /** | |
176 | * Retrieves the WorkflowUtility proxy from the locator. The locator will cache this for us. | |
177 | */ | |
178 | private WorkflowUtility getWorkflowUtility() throws WorkflowException { | |
179 | 0 | WorkflowUtility workflowUtility = |
180 | (WorkflowUtility)GlobalResourceLoader.getService(KEWConstants.WORKFLOW_UTILITY_SERVICE); | |
181 | 0 | if (workflowUtility == null) { |
182 | 0 | throw new WorkflowException("Could not locate the WorkflowUtility service. Please ensure that KEW client is configured properly!"); |
183 | } | |
184 | 0 | return workflowUtility; |
185 | ||
186 | } | |
187 | ||
188 | /** | |
189 | * Retrieves the WorkflowDocumentActions proxy from the locator. The locator will cache this for us. | |
190 | */ | |
191 | private WorkflowDocumentActions getWorkflowDocumentActions() throws WorkflowException { | |
192 | 0 | WorkflowDocumentActions workflowDocumentActions = |
193 | (WorkflowDocumentActions) GlobalResourceLoader.getService(KEWConstants.WORKFLOW_DOCUMENT_ACTIONS_SERVICE); | |
194 | 0 | if (workflowDocumentActions == null) { |
195 | 0 | throw new WorkflowException("Could not locate the WorkflowDocumentActions service. Please ensure that KEW client is configured properly!"); |
196 | } | |
197 | 0 | return workflowDocumentActions; |
198 | } | |
199 | ||
200 | // ######################## | |
201 | // Document Content methods | |
202 | // ######################## | |
203 | ||
204 | /** | |
205 | * Returns an up-to-date DocumentContent of this document. | |
206 | * @see WorkflowUtility#getDocumentContent(Long) | |
207 | */ | |
208 | public DocumentContentDTO getDocumentContent() { | |
209 | try { | |
210 | // create the document if it hasn't already been created | |
211 | 0 | if (getRouteHeader().getRouteHeaderId() == null) { |
212 | 0 | routeHeader = getWorkflowDocumentActions().createDocument(principalId, getRouteHeader()); |
213 | } | |
214 | 0 | if (documentContent == null || documentContentDirty) { |
215 | 0 | documentContent = new ModifiableDocumentContentDTO(getWorkflowUtility().getDocumentContent(routeHeader.getRouteHeaderId())); |
216 | 0 | documentContentDirty = false; |
217 | } | |
218 | 0 | } catch (Exception e) { |
219 | 0 | throw handleExceptionAsRuntime(e); |
220 | 0 | } |
221 | 0 | return documentContent; |
222 | } | |
223 | ||
224 | /** | |
225 | * Returns the application specific section of the document content. This is | |
226 | * a convenience method that delegates to the {@link DocumentContentDTO}. | |
227 | * | |
228 | * For documents routed prior to Workflow 2.0: | |
229 | * If the application did NOT use attributes for XML generation, this method will | |
230 | * return the entire document content XML. Otherwise it will return the empty string. | |
231 | * @see DocumentContentDTO#getApplicationContent() | |
232 | */ | |
233 | public String getApplicationContent() { | |
234 | 0 | return getDocumentContent().getApplicationContent(); |
235 | } | |
236 | ||
237 | /** | |
238 | * Sets the application specific section of the document content. This is | |
239 | * a convenience method that delegates to the {@link DocumentContentDTO}. | |
240 | */ | |
241 | public void setApplicationContent(String applicationContent) { | |
242 | 0 | getDocumentContent().setApplicationContent(applicationContent); |
243 | 0 | } |
244 | ||
245 | /** | |
246 | * Clears all attribute document content from the document. | |
247 | * Typically, this will be used if it is necessary to update the attribute doc content on | |
248 | * the document. This can be accomplished by clearing the content and then adding the | |
249 | * desired attribute definitions. | |
250 | * | |
251 | * This is a convenience method that delegates to the {@link DocumentContentDTO}. | |
252 | * | |
253 | * In order for these changes to take effect, an action must be performed on the document (such as "save"). | |
254 | */ | |
255 | public void clearAttributeContent() { | |
256 | 0 | getDocumentContent().setAttributeContent(""); |
257 | 0 | } |
258 | ||
259 | /** | |
260 | * Returns the attribute-generated section of the document content. This is | |
261 | * a convenience method that delegates to the {@link DocumentContentDTO}. | |
262 | * @see DocumentContentDTO#getAttributeContent() | |
263 | */ | |
264 | public String getAttributeContent() { | |
265 | 0 | return getDocumentContent().getAttributeContent(); |
266 | } | |
267 | ||
268 | /** | |
269 | * Adds an attribute definition which defines creation parameters for a WorkflowAttribute | |
270 | * implementation. The created attribute will be used to generate attribute document content. | |
271 | * When the document is sent to the server, this will be appended to the existing attribute | |
272 | * doc content. If it is required to replace the attribute document content, then the | |
273 | * clearAttributeContent() method should be invoked prior to adding attribute definitions. | |
274 | * | |
275 | * This is a convenience method that delegates to the {@link DocumentContentDTO}. | |
276 | * @see DocumentContentDTO#addAttributeDefinition(WorkflowAttributeDefinitionDTO) | |
277 | */ | |
278 | public void addAttributeDefinition(WorkflowAttributeDefinitionDTO attributeDefinition) { | |
279 | 0 | getDocumentContent().addAttributeDefinition(attributeDefinition); |
280 | 0 | } |
281 | ||
282 | /** | |
283 | * Validate the WorkflowAttributeDefinition against it's attribute on the server. This will validate | |
284 | * the inputs that will eventually become xml. | |
285 | * | |
286 | * Only applies to attributes implementing WorkflowAttributeXmlValidator. | |
287 | * | |
288 | * This is a call through to the WorkflowInfo object and is here for convenience. | |
289 | * | |
290 | * @param attributeDefinition the workflow attribute definition VO to validate | |
291 | * @return WorkflowAttributeValidationErrorVO[] of error from the attribute | |
292 | * @throws WorkflowException when attribute doesn't implement WorkflowAttributeXmlValidator | |
293 | * @see WorkflowUtility#validateWorkflowAttributeDefinitionVO(WorkflowAttributeDefinitionDTO) | |
294 | */ | |
295 | public WorkflowAttributeValidationErrorDTO[] validateAttributeDefinition(WorkflowAttributeDefinitionDTO attributeDefinition) throws WorkflowException { | |
296 | 0 | return getWorkflowUtility().validateWorkflowAttributeDefinitionVO(attributeDefinition); |
297 | } | |
298 | ||
299 | /** | |
300 | * Removes an attribute definition from the document content. This is | |
301 | * a convenience method that delegates to the {@link DocumentContentDTO}. | |
302 | * @param attributeDefinition the attribute definition VO to remove | |
303 | */ | |
304 | public void removeAttributeDefinition(WorkflowAttributeDefinitionDTO attributeDefinition) { | |
305 | 0 | getDocumentContent().removeAttributeDefinition(attributeDefinition); |
306 | 0 | } |
307 | ||
308 | /** | |
309 | * Removes all attribute definitions from the document content. This is | |
310 | * a convenience method that delegates to the {@link DocumentContentDTO}. | |
311 | */ | |
312 | public void clearAttributeDefinitions() { | |
313 | 0 | getDocumentContent().setAttributeDefinitions(new WorkflowAttributeDefinitionDTO[0]); |
314 | 0 | } |
315 | ||
316 | /** | |
317 | * Returns the attribute definition VOs currently defined on the document content. This is | |
318 | * a convenience method that delegates to the {@link DocumentContentDTO}. | |
319 | * @return the attribute definition VOs currently defined on the document content. | |
320 | * @see DocumentContentDTO#getAttributeDefinitions() | |
321 | */ | |
322 | public WorkflowAttributeDefinitionDTO[] getAttributeDefinitions() { | |
323 | 0 | return getDocumentContent().getAttributeDefinitions(); |
324 | } | |
325 | ||
326 | /** | |
327 | * Adds a searchable attribute definition which defines creation parameters for a SearchableAttribute | |
328 | * implementation. The created attribute will be used to generate searchable document content. | |
329 | * When the document is sent to the server, this will be appended to the existing searchable | |
330 | * doc content. If it is required to replace the searchable document content, then the | |
331 | * clearSearchableContent() method should be invoked prior to adding definitions. This is | |
332 | * a convenience method that delegates to the {@link DocumentContentDTO}. | |
333 | */ | |
334 | public void addSearchableDefinition(WorkflowAttributeDefinitionDTO searchableDefinition) { | |
335 | 0 | getDocumentContent().addSearchableDefinition(searchableDefinition); |
336 | 0 | } |
337 | ||
338 | /** | |
339 | * Removes a searchable attribute definition from the document content. This is | |
340 | * a convenience method that delegates to the {@link DocumentContentDTO}. | |
341 | * @param searchableDefinition the searchable attribute definition to remove | |
342 | */ | |
343 | public void removeSearchableDefinition(WorkflowAttributeDefinitionDTO searchableDefinition) { | |
344 | 0 | getDocumentContent().removeSearchableDefinition(searchableDefinition); |
345 | 0 | } |
346 | ||
347 | /** | |
348 | * Removes all searchable attribute definitions from the document content. This is | |
349 | * a convenience method that delegates to the {@link DocumentContentDTO}. | |
350 | */ | |
351 | public void clearSearchableDefinitions() { | |
352 | 0 | getDocumentContent().setSearchableDefinitions(new WorkflowAttributeDefinitionDTO[0]); |
353 | 0 | } |
354 | ||
355 | /** | |
356 | * Clears the searchable content from the document content. This is | |
357 | * a convenience method that delegates to the {@link DocumentContentDTO}. | |
358 | */ | |
359 | public void clearSearchableContent() { | |
360 | 0 | getDocumentContent().setSearchableContent(""); |
361 | 0 | } |
362 | ||
363 | /** | |
364 | * Returns the searchable attribute definitions on the document content. This is | |
365 | * a convenience method that delegates to the {@link DocumentContentDTO}. | |
366 | * @return the searchable attribute definitions on the document content. | |
367 | * @see DocumentContentDTO#getSearchableDefinitions() | |
368 | */ | |
369 | public WorkflowAttributeDefinitionDTO[] getSearchableDefinitions() { | |
370 | 0 | return getDocumentContent().getSearchableDefinitions(); |
371 | } | |
372 | ||
373 | // ######################## | |
374 | // END Document Content methods | |
375 | // ######################## | |
376 | ||
377 | /** | |
378 | * Returns the RouteHeaderVO for the workflow document this WorkflowDocument represents | |
379 | */ | |
380 | public RouteHeaderDTO getRouteHeader() { | |
381 | 0 | return routeHeader; |
382 | } | |
383 | ||
384 | /** | |
385 | * Returns the id of the workflow document this WorkflowDocument represents. If this is a new document | |
386 | * that has not yet been created, the document is first created (and therefore this will return a new id) | |
387 | * @return the id of the workflow document this WorkflowDocument represents | |
388 | * @throws WorkflowException if an error occurs during document creation | |
389 | */ | |
390 | public Long getRouteHeaderId() throws WorkflowException { | |
391 | 0 | createDocumentIfNeccessary(); |
392 | 0 | return getRouteHeader().getRouteHeaderId(); |
393 | } | |
394 | ||
395 | /** | |
396 | * Returns VOs of the pending ActionRequests on this document. If this object represents a new document | |
397 | * that has not yet been created, then an empty array will be returned. The ordering of ActionRequests | |
398 | * returned by this method is not guaranteed. | |
399 | * | |
400 | * This method relies on the WorkflowUtility service | |
401 | * | |
402 | * @return VOs of the pending ActionRequests on this document | |
403 | * @throws WorkflowException if an error occurs obtaining the pending action requests for this document | |
404 | * @see WorkflowUtility#getActionRequests(Long) | |
405 | */ | |
406 | public ActionRequestDTO[] getActionRequests() throws WorkflowException { | |
407 | 0 | if (getRouteHeaderId() == null) { |
408 | 0 | return new ActionRequestDTO[0]; |
409 | } | |
410 | 0 | return getWorkflowUtility().getAllActionRequests(getRouteHeaderId()); |
411 | } | |
412 | ||
413 | /** | |
414 | * Returns VOs of the actions taken on this document. If this object represents a new document | |
415 | * that has not yet been created, then an empty array will be returned. The ordering of actions taken | |
416 | * returned by this method is not guaranteed. | |
417 | * | |
418 | * This method relies on the WorkflowUtility service | |
419 | * | |
420 | * @return VOs of the actions that have been taken on this document | |
421 | * @throws WorkflowException if an error occurs obtaining the actions taken on this document | |
422 | * @see WorkflowUtility#getActionsTaken(Long) | |
423 | */ | |
424 | public ActionTakenDTO[] getActionsTaken() throws WorkflowException { | |
425 | 0 | if (getRouteHeaderId() == null) { |
426 | 0 | return new ActionTakenDTO[0]; |
427 | } | |
428 | 0 | return getWorkflowUtility().getActionsTaken(getRouteHeaderId()); |
429 | } | |
430 | ||
431 | /** | |
432 | * Sets the "application doc id" on the document | |
433 | * @param appDocId the "application doc id" to set on the workflow document | |
434 | */ | |
435 | public void setAppDocId(String appDocId) { | |
436 | 0 | routeHeader.setAppDocId(appDocId); |
437 | 0 | } |
438 | ||
439 | /** | |
440 | * Returns the "application doc id" set on this workflow document (if any) | |
441 | * @return the "application doc id" set on this workflow document (if any) | |
442 | */ | |
443 | public String getAppDocId() { | |
444 | 0 | return routeHeader.getAppDocId(); |
445 | } | |
446 | ||
447 | /** | |
448 | * Returns the date/time the document was created, or null if the document has not yet been created | |
449 | * @return the date/time the document was created, or null if the document has not yet been created | |
450 | */ | |
451 | public Timestamp getDateCreated() { | |
452 | 0 | if (routeHeader.getDateCreated() == null) { |
453 | 0 | return null; |
454 | } | |
455 | 0 | return new Timestamp(routeHeader.getDateCreated().getTime().getTime()); |
456 | } | |
457 | ||
458 | /** | |
459 | * Returns the title of the document | |
460 | * @return the title of the document | |
461 | */ | |
462 | public String getTitle() { | |
463 | 0 | return getRouteHeader().getDocTitle(); |
464 | } | |
465 | ||
466 | /** | |
467 | * Performs the 'save' action on the document this WorkflowDocument represents. If this is a new document, | |
468 | * the document is created first. | |
469 | * @param annotation the message to log for the action | |
470 | * @throws WorkflowException in case an error occurs saving the document | |
471 | * @see WorkflowDocumentActions#saveDocument(UserIdDTO, RouteHeaderDTO, String) | |
472 | */ | |
473 | public void saveDocument(String annotation) throws WorkflowException { | |
474 | 0 | createDocumentIfNeccessary(); |
475 | 0 | routeHeader = getWorkflowDocumentActions().saveDocument(principalId, getRouteHeader(), annotation); |
476 | 0 | documentContentDirty = true; |
477 | 0 | } |
478 | ||
479 | /** | |
480 | * Performs the 'route' action on the document this WorkflowDocument represents. If this is a new document, | |
481 | * the document is created first. | |
482 | * @param annotation the message to log for the action | |
483 | * @throws WorkflowException in case an error occurs routing the document | |
484 | * @see WorkflowDocumentActions#routeDocument(UserIdDTO, RouteHeaderDTO, String) | |
485 | */ | |
486 | public void routeDocument(String annotation) throws WorkflowException { | |
487 | 0 | createDocumentIfNeccessary(); |
488 | 0 | routeHeader = getWorkflowDocumentActions().routeDocument(principalId, routeHeader, annotation); |
489 | 0 | documentContentDirty = true; |
490 | 0 | } |
491 | ||
492 | /** | |
493 | * Performs the 'disapprove' action on the document this WorkflowDocument represents. If this is a new document, | |
494 | * the document is created first. | |
495 | * @param annotation the message to log for the action | |
496 | * @throws WorkflowException in case an error occurs disapproving the document | |
497 | * @see WorkflowDocumentActions#disapproveDocument(UserIdDTO, RouteHeaderDTO, String) | |
498 | */ | |
499 | public void disapprove(String annotation) throws WorkflowException { | |
500 | 0 | createDocumentIfNeccessary(); |
501 | 0 | routeHeader = getWorkflowDocumentActions().disapproveDocument(principalId, getRouteHeader(), annotation); |
502 | 0 | documentContentDirty = true; |
503 | 0 | } |
504 | ||
505 | /** | |
506 | * Performs the 'approve' action on the document this WorkflowDocument represents. If this is a new document, | |
507 | * the document is created first. | |
508 | * @param annotation the message to log for the action | |
509 | * @throws WorkflowException in case an error occurs approving the document | |
510 | * @see WorkflowDocumentActions#approveDocument(UserIdDTO, RouteHeaderDTO, String) | |
511 | */ | |
512 | public void approve(String annotation) throws WorkflowException { | |
513 | 0 | createDocumentIfNeccessary(); |
514 | 0 | routeHeader = getWorkflowDocumentActions().approveDocument(principalId, getRouteHeader(), annotation); |
515 | 0 | documentContentDirty = true; |
516 | 0 | } |
517 | ||
518 | /** | |
519 | * Performs the 'cancel' action on the document this WorkflowDocument represents. If this is a new document, | |
520 | * the document is created first. | |
521 | * @param annotation the message to log for the action | |
522 | * @throws WorkflowException in case an error occurs canceling the document | |
523 | * @see WorkflowDocumentActions#cancelDocument(UserIdDTO, RouteHeaderDTO, String) | |
524 | */ | |
525 | public void cancel(String annotation) throws WorkflowException { | |
526 | 0 | createDocumentIfNeccessary(); |
527 | 0 | routeHeader = getWorkflowDocumentActions().cancelDocument(principalId, getRouteHeader(), annotation); |
528 | 0 | documentContentDirty = true; |
529 | 0 | } |
530 | ||
531 | /** | |
532 | * Performs the 'blanket-approve' action on the document this WorkflowDocument represents. If this is a new document, | |
533 | * the document is created first. | |
534 | * @param annotation the message to log for the action | |
535 | * @throws WorkflowException in case an error occurs blanket-approving the document | |
536 | * @see WorkflowDocumentActions#blanketApprovalToNodes(UserIdDTO, RouteHeaderDTO, String, String[]) | |
537 | */ | |
538 | public void blanketApprove(String annotation) throws WorkflowException { | |
539 | 0 | blanketApprove(annotation, (String)null); |
540 | 0 | } |
541 | ||
542 | /** | |
543 | * Commits any changes made to the local copy of this document to the workflow system. If this is a new document, | |
544 | * the document is created first. | |
545 | * @throws WorkflowException in case an error occurs saving the document | |
546 | * @see WorkflowDocumentActions#saveRoutingData(UserIdDTO, RouteHeaderDTO) | |
547 | */ | |
548 | public void saveRoutingData() throws WorkflowException { | |
549 | 0 | createDocumentIfNeccessary(); |
550 | 0 | routeHeader = getWorkflowDocumentActions().saveRoutingData(principalId, getRouteHeader()); |
551 | 0 | documentContentDirty = true; |
552 | 0 | } |
553 | ||
554 | /** | |
555 | * | |
556 | * This method sets the Application Document Status and then calls saveRoutingData() to commit | |
557 | * the changes to the workflow system. | |
558 | * | |
559 | * @param appDocStatus | |
560 | * @throws WorkflowException | |
561 | */ | |
562 | public void updateAppDocStatus(String appDocStatus) throws WorkflowException { | |
563 | 0 | getRouteHeader().setAppDocStatus(appDocStatus); |
564 | 0 | saveRoutingData(); |
565 | 0 | } |
566 | ||
567 | /** | |
568 | * Performs the 'acknowledge' action on the document this WorkflowDocument represents. If this is a new document, | |
569 | * the document is created first. | |
570 | * @param annotation the message to log for the action | |
571 | * @throws WorkflowException in case an error occurs acknowledging the document | |
572 | * @see WorkflowDocumentActions#acknowledgeDocument(UserIdDTO, RouteHeaderDTO, String) | |
573 | */ | |
574 | public void acknowledge(String annotation) throws WorkflowException { | |
575 | 0 | createDocumentIfNeccessary(); |
576 | 0 | routeHeader = getWorkflowDocumentActions().acknowledgeDocument(principalId, getRouteHeader(), annotation); |
577 | 0 | documentContentDirty = true; |
578 | 0 | } |
579 | ||
580 | /** | |
581 | * Performs the 'fyi' action on the document this WorkflowDocument represents. If this is a new document, | |
582 | * the document is created first. | |
583 | * @param annotation the message to log for the action | |
584 | * @throws WorkflowException in case an error occurs fyi-ing the document | |
585 | */ | |
586 | public void fyi() throws WorkflowException { | |
587 | 0 | createDocumentIfNeccessary(); |
588 | 0 | routeHeader = getWorkflowDocumentActions().clearFYIDocument(principalId, getRouteHeader()); |
589 | 0 | documentContentDirty = true; |
590 | 0 | } |
591 | ||
592 | /** | |
593 | * Performs the 'delete' action on the document this WorkflowDocument represents. If this is a new document, | |
594 | * the document is created first. | |
595 | * @param annotation the message to log for the action | |
596 | * @throws WorkflowException in case an error occurs deleting the document | |
597 | * @see WorkflowDocumentActions#deleteDocument(UserIdDTO, RouteHeaderDTO) | |
598 | */ | |
599 | public void delete() throws WorkflowException { | |
600 | 0 | createDocumentIfNeccessary(); |
601 | 0 | getWorkflowDocumentActions().deleteDocument(principalId, getRouteHeader()); |
602 | 0 | documentContentDirty = true; |
603 | 0 | } |
604 | ||
605 | /** | |
606 | * Reloads the document route header. If this is a new document, the document is created first. | |
607 | * Next time document content is accessed, an up-to-date copy will be retrieved from workflow. | |
608 | * @throws WorkflowException in case an error occurs retrieving the route header | |
609 | */ | |
610 | public void refreshContent() throws WorkflowException { | |
611 | 0 | createDocumentIfNeccessary(); |
612 | 0 | routeHeader = getWorkflowUtility().getRouteHeader(getRouteHeaderId()); |
613 | 0 | documentContentDirty = true; |
614 | 0 | } |
615 | ||
616 | /** | |
617 | * Sends an ad hoc request to the specified user at the current active node on the document. If the document is | |
618 | * in a terminal state, the request will be attached to the terminal node. | |
619 | */ | |
620 | public void adHocRouteDocumentToPrincipal(String actionRequested, String annotation, String principalId, String responsibilityDesc, boolean forceAction) throws WorkflowException { | |
621 | 0 | adHocRouteDocumentToPrincipal(actionRequested, null, annotation, principalId, responsibilityDesc, forceAction); |
622 | 0 | } |
623 | ||
624 | /** | |
625 | * Sends an ad hoc request to the specified user at the specified node on the document. If the document is | |
626 | * in a terminal state, the request will be attached to the terminal node. | |
627 | */ | |
628 | public void adHocRouteDocumentToPrincipal(String actionRequested, String nodeName, String annotation, String principalId, String responsibilityDesc, boolean forceAction) throws WorkflowException { | |
629 | 0 | adHocRouteDocumentToPrincipal(actionRequested, nodeName, annotation, principalId, responsibilityDesc, forceAction, null); |
630 | 0 | } |
631 | ||
632 | /** | |
633 | * Sends an ad hoc request to the specified user at the specified node on the document. If the document is | |
634 | * in a terminal state, the request will be attached to the terminal node. | |
635 | */ | |
636 | public void adHocRouteDocumentToPrincipal(String actionRequested, String nodeName, String annotation, String principalId, String responsibilityDesc, boolean forceAction, String requestLabel) throws WorkflowException { | |
637 | 0 | createDocumentIfNeccessary(); |
638 | 0 | routeHeader = getWorkflowDocumentActions().adHocRouteDocumentToPrincipal(principalId, getRouteHeader(), actionRequested, nodeName, annotation, principalId, responsibilityDesc, forceAction, requestLabel); |
639 | 0 | documentContentDirty = true; |
640 | 0 | } |
641 | ||
642 | /** | |
643 | * Sends an ad hoc request to the specified workgroup at the current active node on the document. If the document is | |
644 | * in a terminal state, the request will be attached to the terminal node. | |
645 | */ | |
646 | public void adHocRouteDocumentToGroup(String actionRequested, String annotation, String groupId, String responsibilityDesc, boolean forceAction) throws WorkflowException { | |
647 | 0 | adHocRouteDocumentToGroup(actionRequested, null, annotation, groupId, responsibilityDesc, forceAction); |
648 | 0 | } |
649 | ||
650 | /** | |
651 | * Sends an ad hoc request to the specified workgroup at the specified node on the document. If the document is | |
652 | * in a terminal state, the request will be attached to the terminal node. | |
653 | */ | |
654 | public void adHocRouteDocumentToGroup(String actionRequested, String nodeName, String annotation, String groupId, String responsibilityDesc, boolean forceAction) throws WorkflowException { | |
655 | 0 | adHocRouteDocumentToGroup(actionRequested, nodeName, annotation, groupId, responsibilityDesc, forceAction, null); |
656 | 0 | } |
657 | ||
658 | /** | |
659 | * Sends an ad hoc request to the specified workgroup at the specified node on the document. If the document is | |
660 | * in a terminal state, the request will be attached to the terminal node. | |
661 | */ | |
662 | public void adHocRouteDocumentToGroup(String actionRequested, String nodeName, String annotation, String groupId, String responsibilityDesc, boolean forceAction, String requestLabel) throws WorkflowException { | |
663 | 0 | createDocumentIfNeccessary(); |
664 | 0 | routeHeader = getWorkflowDocumentActions().adHocRouteDocumentToGroup(principalId, getRouteHeader(), actionRequested, nodeName, annotation, groupId, responsibilityDesc, forceAction, requestLabel); |
665 | 0 | documentContentDirty = true; |
666 | 0 | } |
667 | ||
668 | /** | |
669 | * Revokes AdHoc request(s) according to the given AdHocRevokeVO which is passed in. | |
670 | * | |
671 | * If a specific action request ID is specified on the revoke bean, and that ID is not a valid ID, this method should throw a | |
672 | * WorkflowException. | |
673 | * @param revoke AdHocRevokeVO | |
674 | * @param annotation message to note for this action | |
675 | * @throws WorkflowException if an error occurs revoking adhoc requests | |
676 | * @see WorkflowDocumentActions#revokeAdHocRequests(UserIdDTO, RouteHeaderDTO, AdHocRevokeDTO, String) | |
677 | */ | |
678 | public void revokeAdHocRequests(AdHocRevokeDTO revoke, String annotation) throws WorkflowException { | |
679 | 0 | if (getRouteHeader().getRouteHeaderId() == null) { |
680 | 0 | throw new WorkflowException("Can't revoke request, the workflow document has not yet been created!"); |
681 | } | |
682 | 0 | createDocumentIfNeccessary(); |
683 | 0 | routeHeader = getWorkflowDocumentActions().revokeAdHocRequests(principalId, getRouteHeader(), revoke, annotation); |
684 | 0 | documentContentDirty = true; |
685 | 0 | } |
686 | ||
687 | /** | |
688 | * Sets the title of the document, empty string if null is specified. | |
689 | * @param title title of the document to set, or null | |
690 | */ | |
691 | // WorkflowException is declared but not thrown... | |
692 | public void setTitle(String title) throws WorkflowException { | |
693 | 0 | if (title == null) { |
694 | 0 | title = ""; |
695 | } | |
696 | 0 | if (title.length() > KEWConstants.TITLE_MAX_LENGTH) { |
697 | 0 | title = title.substring(0, KEWConstants.TITLE_MAX_LENGTH); |
698 | } | |
699 | 0 | getRouteHeader().setDocTitle(title); |
700 | 0 | } |
701 | ||
702 | /** | |
703 | * Returns the document type of the workflow document | |
704 | * @return the document type of the workflow document | |
705 | * @throws RuntimeException if document does not exist (is not yet created) | |
706 | * @see RouteHeaderDTO#getDocTypeName() | |
707 | */ | |
708 | public String getDocumentType() { | |
709 | 0 | if (getRouteHeader() == null) { |
710 | // HACK: FIXME: we should probably proscribe, or at least handle consistently, these corner cases | |
711 | // NPEs are not nice | |
712 | 0 | throw new RuntimeException("No such document!"); |
713 | } | |
714 | 0 | return getRouteHeader().getDocTypeName(); |
715 | } | |
716 | ||
717 | /** | |
718 | * Returns whether an acknowledge is requested of the user for this document. This is | |
719 | * a convenience method that delegates to {@link RouteHeaderDTO#isAckRequested()}. | |
720 | * @return whether an acknowledge is requested of the user for this document | |
721 | * @see RouteHeaderDTO#isAckRequested() | |
722 | */ | |
723 | public boolean isAcknowledgeRequested() { | |
724 | 0 | return getRouteHeader().isAckRequested(); |
725 | } | |
726 | ||
727 | /** | |
728 | * Returns whether an approval is requested of the user for this document. This is | |
729 | * a convenience method that delegates to {@link RouteHeaderDTO#isApproveRequested()}. | |
730 | * @return whether an approval is requested of the user for this document | |
731 | * @see RouteHeaderDTO#isApproveRequested() | |
732 | */ | |
733 | public boolean isApprovalRequested() { | |
734 | 0 | return getRouteHeader().isApproveRequested(); |
735 | } | |
736 | ||
737 | /** | |
738 | * Returns whether a completion is requested of the user for this document. This is | |
739 | * a convenience method that delegates to {@link RouteHeaderDTO#isCompleteRequested()}. | |
740 | * @return whether an approval is requested of the user for this document | |
741 | * @see RouteHeaderDTO#isCompleteRequested() | |
742 | */ | |
743 | public boolean isCompletionRequested() { | |
744 | 0 | return getRouteHeader().isCompleteRequested(); |
745 | } | |
746 | ||
747 | /** | |
748 | * Returns whether an FYI is requested of the user for this document. This is | |
749 | * a convenience method that delegates to {@link RouteHeaderDTO#isFyiRequested()}. | |
750 | * @return whether an FYI is requested of the user for this document | |
751 | * @see RouteHeaderDTO#isFyiRequested() | |
752 | */ | |
753 | public boolean isFYIRequested() { | |
754 | 0 | return getRouteHeader().isFyiRequested(); |
755 | } | |
756 | ||
757 | /** | |
758 | * Returns whether the user can blanket approve the document | |
759 | * @return whether the user can blanket approve the document | |
760 | * @see RouteHeaderDTO#getValidActions() | |
761 | */ | |
762 | public boolean isBlanketApproveCapable() { | |
763 | // TODO delyea - refactor this to take into account non-initiator owned documents | |
764 | 0 | return getRouteHeader().getValidActions().contains(KEWConstants.ACTION_TAKEN_BLANKET_APPROVE_CD) && (isCompletionRequested() || isApprovalRequested() || stateIsInitiated()); |
765 | } | |
766 | ||
767 | /** | |
768 | * Returns whether the specified action code is valid for the current user and document | |
769 | * @return whether the user can blanket approve the document | |
770 | * @see RouteHeaderDTO#getValidActions() | |
771 | */ | |
772 | public boolean isActionCodeValidForDocument(String actionTakenCode) { | |
773 | 0 | return getRouteHeader().getValidActions().contains(actionTakenCode); |
774 | } | |
775 | ||
776 | /** | |
777 | * Performs the 'super-user-approve' action on the document this WorkflowDocument represents. If this is a new document, | |
778 | * the document is created first. | |
779 | * @param annotation the message to log for the action | |
780 | * @throws WorkflowException in case an error occurs super-user-approve-ing the document | |
781 | * @see WorkflowDocumentActions#superUserApprove(UserIdDTO, RouteHeaderDTO, String) | |
782 | */ | |
783 | public void superUserApprove(String annotation) throws WorkflowException { | |
784 | 0 | createDocumentIfNeccessary(); |
785 | 0 | routeHeader = getWorkflowDocumentActions().superUserApprove(principalId, getRouteHeader(), annotation); |
786 | 0 | documentContentDirty = true; |
787 | 0 | } |
788 | ||
789 | /** | |
790 | * Performs the 'super-user-action-request-approve' action on the document this WorkflowDocument represents and the action | |
791 | * request the id represents. | |
792 | * @param actionRequestId the action request id for the action request the super user is approved | |
793 | * @param annotation the message to log for the action | |
794 | * @throws WorkflowException in case an error occurs super-user-action-request-approve-ing the document | |
795 | * @see WorkflowDocumentActions#superUserApprove(UserIdVO, RouteHeaderVO, String)(UserIdVO, RouteHeaderVO, String) | |
796 | */ | |
797 | public void superUserActionRequestApprove(Long actionRequestId, String annotation) throws WorkflowException { | |
798 | 0 | createDocumentIfNeccessary(); |
799 | 0 | routeHeader = getWorkflowDocumentActions().superUserActionRequestApprove(principalId, getRouteHeader(), actionRequestId, annotation); |
800 | 0 | documentContentDirty = true; |
801 | 0 | } |
802 | ||
803 | /** | |
804 | * Performs the 'super-user-disapprove' action on the document this WorkflowDocument represents. If this is a new document, | |
805 | * the document is created first. | |
806 | * @param annotation the message to log for the action | |
807 | * @throws WorkflowException in case an error occurs super-user-disapprove-ing the document | |
808 | * @see WorkflowDocumentActions#superUserDisapprove(UserIdDTO, RouteHeaderDTO, String) | |
809 | */ | |
810 | public void superUserDisapprove(String annotation) throws WorkflowException { | |
811 | 0 | createDocumentIfNeccessary(); |
812 | 0 | routeHeader = getWorkflowDocumentActions().superUserDisapprove(principalId, getRouteHeader(), annotation); |
813 | 0 | documentContentDirty = true; |
814 | 0 | } |
815 | ||
816 | /** | |
817 | * Performs the 'super-user-cancel' action on the document this WorkflowDocument represents. If this is a new document, | |
818 | * the document is created first. | |
819 | * @param annotation the message to log for the action | |
820 | * @throws WorkflowException in case an error occurs super-user-cancel-ing the document | |
821 | * @see WorkflowDocumentActions#superUserCancel(UserIdDTO, RouteHeaderDTO, String) | |
822 | */ | |
823 | public void superUserCancel(String annotation) throws WorkflowException { | |
824 | 0 | createDocumentIfNeccessary(); |
825 | 0 | routeHeader = getWorkflowDocumentActions().superUserCancel(principalId, getRouteHeader(), annotation); |
826 | 0 | documentContentDirty = true; |
827 | 0 | } |
828 | ||
829 | /** | |
830 | * Returns whether the user is a super user on this document | |
831 | * @return whether the user is a super user on this document | |
832 | * @throws WorkflowException if an error occurs determining whether the user is a super user on this document | |
833 | * @see WorkflowUtility#isSuperUserForDocumentType(UserIdDTO, Long) | |
834 | */ | |
835 | public boolean isSuperUser() throws WorkflowException { | |
836 | 0 | createDocumentIfNeccessary(); |
837 | 0 | return getWorkflowUtility().isSuperUserForDocumentType(principalId, getRouteHeader().getDocTypeId()); |
838 | } | |
839 | ||
840 | /** | |
841 | * Returns whether the user passed into WorkflowDocument at instantiation can route | |
842 | * the document. | |
843 | * @return if user passed into WorkflowDocument at instantiation can route | |
844 | * the document. | |
845 | */ | |
846 | public boolean isRouteCapable() { | |
847 | 0 | return isActionCodeValidForDocument(KEWConstants.ACTION_TAKEN_ROUTED_CD); |
848 | } | |
849 | ||
850 | /** | |
851 | * Performs the 'clearFYI' action on the document this WorkflowDocument represents. If this is a new document, | |
852 | * the document is created first. | |
853 | * @param annotation the message to log for the action | |
854 | * @throws WorkflowException in case an error occurs clearing FYI on the document | |
855 | * @see WorkflowDocumentActions#clearFYIDocument(UserIdDTO, RouteHeaderDTO) | |
856 | */ | |
857 | public void clearFYI() throws WorkflowException { | |
858 | 0 | createDocumentIfNeccessary(); |
859 | 0 | getWorkflowDocumentActions().clearFYIDocument(principalId, getRouteHeader()); |
860 | 0 | documentContentDirty = true; |
861 | 0 | } |
862 | ||
863 | /** | |
864 | * Performs the 'complete' action on the document this WorkflowDocument represents. If this is a new document, | |
865 | * the document is created first. | |
866 | * @param annotation the message to log for the action | |
867 | * @throws WorkflowException in case an error occurs clearing completing the document | |
868 | * @see WorkflowDocumentActions#completeDocument(UserIdDTO, RouteHeaderDTO, String) | |
869 | */ | |
870 | public void complete(String annotation) throws WorkflowException { | |
871 | 0 | createDocumentIfNeccessary(); |
872 | 0 | routeHeader = getWorkflowDocumentActions().completeDocument(principalId, getRouteHeader(), annotation); |
873 | 0 | documentContentDirty = true; |
874 | 0 | } |
875 | ||
876 | /** | |
877 | * Performs the 'logDocumentAction' action on the document this WorkflowDocument represents. If this is a new document, | |
878 | * the document is created first. The 'logDocumentAction' simply logs a message on the document. | |
879 | * @param annotation the message to log for the action | |
880 | * @throws WorkflowException in case an error occurs logging a document action on the document | |
881 | * @see WorkflowDocumentActions#logDocumentAction(UserIdDTO, RouteHeaderDTO, String) | |
882 | */ | |
883 | public void logDocumentAction(String annotation) throws WorkflowException { | |
884 | 0 | createDocumentIfNeccessary(); |
885 | 0 | getWorkflowDocumentActions().logDocumentAction(principalId, getRouteHeader(), annotation); |
886 | 0 | documentContentDirty = true; |
887 | 0 | } |
888 | ||
889 | /** | |
890 | * Indicates if the document is in the initiated state or not. | |
891 | * | |
892 | * @return true if in the specified state | |
893 | */ | |
894 | public boolean stateIsInitiated() { | |
895 | 0 | return KEWConstants.ROUTE_HEADER_INITIATED_CD.equals(getRouteHeader().getDocRouteStatus()); |
896 | } | |
897 | ||
898 | /** | |
899 | * Indicates if the document is in the saved state or not. | |
900 | * | |
901 | * @return true if in the specified state | |
902 | */ | |
903 | public boolean stateIsSaved() { | |
904 | 0 | return KEWConstants.ROUTE_HEADER_SAVED_CD.equals(getRouteHeader().getDocRouteStatus()); |
905 | } | |
906 | ||
907 | /** | |
908 | * Indicates if the document is in the enroute state or not. | |
909 | * | |
910 | * @return true if in the specified state | |
911 | */ | |
912 | public boolean stateIsEnroute() { | |
913 | 0 | return KEWConstants.ROUTE_HEADER_ENROUTE_CD.equals(getRouteHeader().getDocRouteStatus()); |
914 | } | |
915 | ||
916 | /** | |
917 | * Indicates if the document is in the exception state or not. | |
918 | * | |
919 | * @return true if in the specified state | |
920 | */ | |
921 | public boolean stateIsException() { | |
922 | 0 | return KEWConstants.ROUTE_HEADER_EXCEPTION_CD.equals(getRouteHeader().getDocRouteStatus()); |
923 | } | |
924 | ||
925 | /** | |
926 | * Indicates if the document is in the canceled state or not. | |
927 | * | |
928 | * @return true if in the specified state | |
929 | */ | |
930 | public boolean stateIsCanceled() { | |
931 | 0 | return KEWConstants.ROUTE_HEADER_CANCEL_CD.equals(getRouteHeader().getDocRouteStatus()); |
932 | } | |
933 | ||
934 | /** | |
935 | * Indicates if the document is in the disapproved state or not. | |
936 | * | |
937 | * @return true if in the specified state | |
938 | */ | |
939 | public boolean stateIsDisapproved() { | |
940 | 0 | return KEWConstants.ROUTE_HEADER_DISAPPROVED_CD.equals(getRouteHeader().getDocRouteStatus()); |
941 | } | |
942 | ||
943 | /** | |
944 | * Indicates if the document is in the approved state or not. Will answer true is document is in Processed or Finalized state. | |
945 | * | |
946 | * @return true if in the specified state | |
947 | */ | |
948 | public boolean stateIsApproved() { | |
949 | 0 | return KEWConstants.ROUTE_HEADER_APPROVED_CD.equals(getRouteHeader().getDocRouteStatus()) || stateIsProcessed() || stateIsFinal(); |
950 | } | |
951 | ||
952 | /** | |
953 | * Indicates if the document is in the processed state or not. | |
954 | * | |
955 | * @return true if in the specified state | |
956 | */ | |
957 | public boolean stateIsProcessed() { | |
958 | 0 | return KEWConstants.ROUTE_HEADER_PROCESSED_CD.equals(getRouteHeader().getDocRouteStatus()); |
959 | } | |
960 | ||
961 | /** | |
962 | * Indicates if the document is in the final state or not. | |
963 | * | |
964 | * @return true if in the specified state | |
965 | */ | |
966 | public boolean stateIsFinal() { | |
967 | 0 | return KEWConstants.ROUTE_HEADER_FINAL_CD.equals(getRouteHeader().getDocRouteStatus()); |
968 | } | |
969 | ||
970 | /** | |
971 | * Returns the display value of the current document status | |
972 | * @return the display value of the current document status | |
973 | */ | |
974 | public String getStatusDisplayValue() { | |
975 | 0 | return (String) KEWConstants.DOCUMENT_STATUSES.get(getRouteHeader().getDocRouteStatus()); |
976 | } | |
977 | ||
978 | /** | |
979 | * Returns the principalId with which this WorkflowDocument was constructed | |
980 | * @return the principalId with which this WorkflowDocument was constructed | |
981 | */ | |
982 | public String getPrincipalId() { | |
983 | 0 | return principalId; |
984 | } | |
985 | ||
986 | /** | |
987 | * Sets the principalId under which actions against this document should be taken | |
988 | * @param principalId principalId under which actions against this document should be taken | |
989 | */ | |
990 | public void setPrincipalId(String principalId) { | |
991 | 0 | this.principalId = principalId; |
992 | 0 | } |
993 | ||
994 | /** | |
995 | * Checks if the document has been created or not (i.e. has a route header id or not) and issues | |
996 | * a call to the server to create the document if it has not yet been created. | |
997 | * | |
998 | * Also checks if the document content has been updated and saves it if it has. | |
999 | */ | |
1000 | private void createDocumentIfNeccessary() throws WorkflowException { | |
1001 | 0 | if (getRouteHeader().getRouteHeaderId() == null) { |
1002 | 0 | routeHeader = getWorkflowDocumentActions().createDocument(principalId, getRouteHeader()); |
1003 | } | |
1004 | 0 | if (documentContent != null && documentContent.isModified()) { |
1005 | 0 | saveDocumentContent(documentContent); |
1006 | } | |
1007 | 0 | } |
1008 | ||
1009 | /** | |
1010 | * Like handleException except it returns a RuntimeException. | |
1011 | */ | |
1012 | private RuntimeException handleExceptionAsRuntime(Exception e) { | |
1013 | 0 | if (e instanceof RuntimeException) { |
1014 | 0 | return (RuntimeException)e; |
1015 | } | |
1016 | 0 | return new WorkflowRuntimeException(e); |
1017 | } | |
1018 | ||
1019 | // WORKFLOW 2.1: new methods | |
1020 | ||
1021 | /** | |
1022 | * Performs the 'blanketApprove' action on the document this WorkflowDocument represents. If this is a new document, | |
1023 | * the document is created first. | |
1024 | * @param annotation the message to log for the action | |
1025 | * @param nodeName the extent to which to blanket approve; blanket approval will stop at this node | |
1026 | * @throws WorkflowException in case an error occurs blanket-approving the document | |
1027 | * @see WorkflowDocumentActions#blanketApprovalToNodes(UserIdDTO, RouteHeaderDTO, String, String[]) | |
1028 | */ | |
1029 | public void blanketApprove(String annotation, String nodeName) throws WorkflowException { | |
1030 | 0 | blanketApprove(annotation, (nodeName == null ? new String[] {} : new String[] { nodeName })); |
1031 | 0 | } |
1032 | ||
1033 | /** | |
1034 | * Performs the 'blanketApprove' action on the document this WorkflowDocument represents. If this is a new document, | |
1035 | * the document is created first. | |
1036 | * @param annotation the message to log for the action | |
1037 | * @param nodeNames the nodes at which blanket approval will stop (in case the blanket approval traverses a split, in which case there may be multiple "active" nodes) | |
1038 | * @throws WorkflowException in case an error occurs blanket-approving the document | |
1039 | * @see WorkflowDocumentActions#blanketApprovalToNodes(UserIdDTO, RouteHeaderDTO, String, String[]) | |
1040 | */ | |
1041 | public void blanketApprove(String annotation, String[] nodeNames) throws WorkflowException { | |
1042 | 0 | createDocumentIfNeccessary(); |
1043 | 0 | routeHeader = getWorkflowDocumentActions().blanketApprovalToNodes(principalId, getRouteHeader(), annotation, nodeNames); |
1044 | 0 | documentContentDirty = true; |
1045 | 0 | } |
1046 | ||
1047 | /** | |
1048 | * The user taking action removes the action items for this workgroup and document from all other | |
1049 | * group members' action lists. If this is a new document, the document is created first. | |
1050 | * | |
1051 | * @param annotation the message to log for the action | |
1052 | * @param workgroupId the workgroup on which to take authority | |
1053 | * @throws WorkflowException user taking action is not in workgroup | |
1054 | */ | |
1055 | public void takeGroupAuthority(String annotation, String groupId) throws WorkflowException { | |
1056 | 0 | createDocumentIfNeccessary(); |
1057 | 0 | routeHeader = getWorkflowDocumentActions().takeGroupAuthority(principalId, getRouteHeader(), groupId, annotation); |
1058 | 0 | documentContentDirty = true; |
1059 | 0 | } |
1060 | ||
1061 | /** | |
1062 | * The user that took the group authority is putting the action items back in the other users action lists. | |
1063 | * If this is a new document, the document is created first. | |
1064 | * | |
1065 | * @param annotation the message to log for the action | |
1066 | * @param workgroupId the workgroup on which to take authority | |
1067 | * @throws WorkflowException user taking action is not in workgroup or did not take workgroup authority | |
1068 | */ | |
1069 | public void releaseGroupAuthority(String annotation, String groupId) throws WorkflowException { | |
1070 | 0 | createDocumentIfNeccessary(); |
1071 | 0 | routeHeader = getWorkflowDocumentActions().releaseGroupAuthority(principalId, getRouteHeader(), groupId, annotation); |
1072 | 0 | documentContentDirty = true; |
1073 | 0 | } |
1074 | ||
1075 | /** | |
1076 | * Returns names of all active nodes the document is currently at. | |
1077 | * | |
1078 | * @return names of all active nodes the document is currently at. | |
1079 | * @throws WorkflowException if there is an error obtaining the currently active nodes on the document | |
1080 | * @see WorkflowUtility#getActiveNodeInstances(Long) | |
1081 | */ | |
1082 | public String[] getNodeNames() throws WorkflowException { | |
1083 | 0 | RouteNodeInstanceDTO[] activeNodeInstances = getWorkflowUtility().getActiveNodeInstances(getRouteHeaderId()); |
1084 | 0 | String[] nodeNames = new String[(activeNodeInstances == null ? 0 : activeNodeInstances.length)]; |
1085 | 0 | for (int index = 0; index < activeNodeInstances.length; index++) { |
1086 | 0 | nodeNames[index] = activeNodeInstances[index].getName(); |
1087 | } | |
1088 | 0 | return nodeNames; |
1089 | } | |
1090 | ||
1091 | /** | |
1092 | * Performs the 'returnToPrevious' action on the document this WorkflowDocument represents. If this is a new document, | |
1093 | * the document is created first. | |
1094 | * @param annotation the message to log for the action | |
1095 | * @param nodeName the node to return to | |
1096 | * @throws WorkflowException in case an error occurs returning to previous node | |
1097 | * @see WorkflowDocumentActions#returnDocumentToPreviousNode(UserIdDTO, RouteHeaderDTO, ReturnPointDTO, String) | |
1098 | */ | |
1099 | public void returnToPreviousNode(String annotation, String nodeName) throws WorkflowException { | |
1100 | 0 | ReturnPointDTO returnPoint = new ReturnPointDTO(nodeName); |
1101 | 0 | returnToPreviousNode(annotation, returnPoint); |
1102 | 0 | } |
1103 | ||
1104 | /** | |
1105 | * Performs the 'returnToPrevious' action on the document this WorkflowDocument represents. If this is a new document, | |
1106 | * the document is created first. | |
1107 | * @param annotation the message to log for the action | |
1108 | * @param ReturnPointDTO the node to return to | |
1109 | * @throws WorkflowException in case an error occurs returning to previous node | |
1110 | * @see WorkflowDocumentActions#returnDocumentToPreviousNode(UserIdDTO, RouteHeaderDTO, ReturnPointDTO, String) | |
1111 | */ | |
1112 | public void returnToPreviousNode(String annotation, ReturnPointDTO returnPoint) throws WorkflowException { | |
1113 | 0 | createDocumentIfNeccessary(); |
1114 | 0 | routeHeader = getWorkflowDocumentActions().returnDocumentToPreviousNode(principalId, getRouteHeader(), returnPoint, annotation); |
1115 | 0 | documentContentDirty = true; |
1116 | 0 | } |
1117 | ||
1118 | /** | |
1119 | * Moves the document from a current node in it's route to another node. If this is a new document, | |
1120 | * the document is created first. | |
1121 | * @param MovePointDTO VO representing the node at which to start, and the number of steps to move (negative steps is reverse) | |
1122 | * @param annotation the message to log for the action | |
1123 | * @throws WorkflowException in case an error occurs moving the document | |
1124 | * @see WorkflowDocumentActions#moveDocument(UserIdDTO, RouteHeaderDTO, MovePointDTO, String) | |
1125 | */ | |
1126 | public void moveDocument(MovePointDTO movePoint, String annotation) throws WorkflowException { | |
1127 | 0 | createDocumentIfNeccessary(); |
1128 | 0 | routeHeader = getWorkflowDocumentActions().moveDocument(principalId, getRouteHeader(), movePoint, annotation); |
1129 | 0 | documentContentDirty = true; |
1130 | 0 | } |
1131 | ||
1132 | /** | |
1133 | * Returns the route node instances that have been created so far during the life of this document. This includes | |
1134 | * all previous instances which have already been processed and are no longer active. | |
1135 | * @return the route node instances that have been created so far during the life of this document | |
1136 | * @throws WorkflowException if there is an error getting the route node instances for the document | |
1137 | * @see WorkflowUtility#getDocumentRouteNodeInstances(Long) | |
1138 | */ | |
1139 | public RouteNodeInstanceDTO[] getRouteNodeInstances() throws WorkflowException { | |
1140 | 0 | return getWorkflowUtility().getDocumentRouteNodeInstances(getRouteHeaderId()); |
1141 | } | |
1142 | ||
1143 | /** | |
1144 | * Returns Array of Route Nodes Names that can be safely returned to using the 'returnToPreviousXXX' methods. | |
1145 | * Names are sorted in reverse chronological order. | |
1146 | * | |
1147 | * @return array of Route Nodes Names that can be safely returned to using the 'returnToPreviousXXX' methods | |
1148 | * @throws WorkflowException if an error occurs obtaining the names of the previous route nodes for this document | |
1149 | * @see WorkflowUtility#getPreviousRouteNodeNames(Long) | |
1150 | */ | |
1151 | public String[] getPreviousNodeNames() throws WorkflowException { | |
1152 | 0 | return getWorkflowUtility().getPreviousRouteNodeNames(getRouteHeaderId()); |
1153 | } | |
1154 | ||
1155 | /** | |
1156 | * Returns a document detail VO representing the route header along with action requests, actions taken, | |
1157 | * and route node instances. | |
1158 | * @return Returns a document detail VO representing the route header along with action requests, actions taken, and route node instances. | |
1159 | * @throws WorkflowException | |
1160 | */ | |
1161 | public DocumentDetailDTO getDetail() throws WorkflowException { | |
1162 | 0 | return getWorkflowUtility().getDocumentDetail(getRouteHeaderId()); |
1163 | } | |
1164 | ||
1165 | /** | |
1166 | * Saves the given DocumentContentVO for this document. | |
1167 | * @param documentContent document content VO to store for this document | |
1168 | * @since 2.3 | |
1169 | * @see WorkflowDocumentActions#saveDocumentContent(DocumentContentDTO) | |
1170 | */ | |
1171 | public DocumentContentDTO saveDocumentContent(DocumentContentDTO documentContent) throws WorkflowException { | |
1172 | 0 | if (documentContent.getRouteHeaderId() == null) { |
1173 | 0 | throw new WorkflowException("Document Content does not have a valid document ID."); |
1174 | } | |
1175 | // important to check directly against getRouteHeader().getRouteHeaderId() instead of just getRouteHeaderId() because saveDocumentContent | |
1176 | // is called from createDocumentIfNeccessary which is called from getRouteHeaderId(). If that method was used, we would have an infinite loop. | |
1177 | 0 | if (!documentContent.getRouteHeaderId().equals(getRouteHeader().getRouteHeaderId())) { |
1178 | 0 | throw new WorkflowException("Attempted to save content on this document with an invalid document id of " + documentContent.getRouteHeaderId()); |
1179 | } | |
1180 | 0 | DocumentContentDTO newDocumentContent = getWorkflowDocumentActions().saveDocumentContent(documentContent); |
1181 | 0 | this.documentContent = new ModifiableDocumentContentDTO(newDocumentContent); |
1182 | 0 | documentContentDirty = false; |
1183 | 0 | return this.documentContent; |
1184 | } | |
1185 | ||
1186 | public void placeInExceptionRouting(String annotation) throws WorkflowException { | |
1187 | 0 | createDocumentIfNeccessary(); |
1188 | 0 | routeHeader = getWorkflowDocumentActions().placeInExceptionRouting(principalId, getRouteHeader(), annotation); |
1189 | 0 | documentContentDirty = true; |
1190 | 0 | } |
1191 | ||
1192 | ||
1193 | ||
1194 | // DEPRECATED: as of Workflow 2.1 | |
1195 | ||
1196 | /** | |
1197 | * @deprecated use getNodeNames() instead | |
1198 | */ | |
1199 | public Integer getDocRouteLevel() { | |
1200 | 0 | return routeHeader.getDocRouteLevel(); |
1201 | } | |
1202 | ||
1203 | /** | |
1204 | * @deprecated use returnToPreviousNode(String annotation, String nodeName) instead | |
1205 | */ | |
1206 | public void returnToPreviousRouteLevel(String annotation, Integer destRouteLevel) throws WorkflowException { | |
1207 | 0 | createDocumentIfNeccessary(); |
1208 | 0 | getWorkflowDocumentActions().returnDocumentToPreviousRouteLevel(principalId, getRouteHeader(), destRouteLevel, annotation); |
1209 | 0 | documentContentDirty = true; |
1210 | 0 | } |
1211 | ||
1212 | /** | |
1213 | * Returns a list of NoteVO representing the notes on the document | |
1214 | * @return a list of NoteVO representing the notes on the document | |
1215 | * @see RouteHeaderDTO#getNotes() | |
1216 | */ | |
1217 | public List<NoteDTO> getNoteList(){ | |
1218 | 0 | List<NoteDTO> notesList = new ArrayList<NoteDTO>(); |
1219 | 0 | NoteDTO[] notes = routeHeader.getNotes(); |
1220 | 0 | if (notes != null){ |
1221 | 0 | for (int i=0; i<notes.length; i++){ |
1222 | 0 | if (! isDeletedNote(notes[i])){ |
1223 | 0 | notesList.add(notes[i]); |
1224 | } | |
1225 | } | |
1226 | } | |
1227 | 0 | return notesList; |
1228 | } | |
1229 | ||
1230 | /** | |
1231 | * Deletes a note from the document. The deletion is deferred until the next time the document is committed (via an action). | |
1232 | * @param noteVO the note to remove from the document | |
1233 | */ | |
1234 | public void deleteNote(NoteDTO noteVO){ | |
1235 | 0 | if (noteVO != null && noteVO.getNoteId()!=null){ |
1236 | 0 | NoteDTO noteToDelete = new NoteDTO(); |
1237 | 0 | noteToDelete.setNoteId(new Long(noteVO.getNoteId().longValue())); |
1238 | /*noteToDelete.setRouteHeaderId(noteVO.getRouteHeaderId()); | |
1239 | noteToDelete.setNoteAuthorWorkflowId(noteVO.getNoteAuthorWorkflowId()); | |
1240 | noteToDelete.setNoteCreateDate(noteVO.getNoteCreateDate()); | |
1241 | noteToDelete.setNoteText(noteVO.getNoteText()); | |
1242 | noteToDelete.setLockVerNbr(noteVO.getLockVerNbr());*/ | |
1243 | 0 | increaseNotesToDeleteArraySizeByOne(); |
1244 | 0 | routeHeader.getNotesToDelete()[routeHeader.getNotesToDelete().length - 1]=noteToDelete; |
1245 | } | |
1246 | 0 | } |
1247 | ||
1248 | /** | |
1249 | * Updates the note of the same note id, on the document. The update is deferred until the next time the document is committed (via an action). | |
1250 | * @param noteVO the note to update | |
1251 | */ | |
1252 | public void updateNote (NoteDTO noteVO){ | |
1253 | 0 | boolean isUpdateNote = false; |
1254 | 0 | if (noteVO != null){ |
1255 | 0 | NoteDTO[] notes = routeHeader.getNotes(); |
1256 | 0 | NoteDTO copyNote = new NoteDTO(); |
1257 | 0 | if (noteVO.getNoteId() != null){ |
1258 | 0 | copyNote.setNoteId(new Long(noteVO.getNoteId().longValue())); |
1259 | } | |
1260 | ||
1261 | 0 | if (noteVO.getRouteHeaderId() != null){ |
1262 | 0 | copyNote.setRouteHeaderId(new Long(noteVO.getRouteHeaderId().longValue())); |
1263 | } else { | |
1264 | 0 | copyNote.setRouteHeaderId(routeHeader.getRouteHeaderId()); |
1265 | } | |
1266 | ||
1267 | 0 | if (noteVO.getNoteAuthorWorkflowId() != null){ |
1268 | 0 | copyNote.setNoteAuthorWorkflowId(new String(noteVO.getNoteAuthorWorkflowId())); |
1269 | } else { | |
1270 | 0 | copyNote.setNoteAuthorWorkflowId(principalId.toString()) ; |
1271 | } | |
1272 | ||
1273 | 0 | if (noteVO.getNoteCreateDate() != null){ |
1274 | 0 | Calendar cal = Calendar.getInstance(); |
1275 | 0 | cal.setTimeInMillis(noteVO.getNoteCreateDate().getTimeInMillis()); |
1276 | 0 | copyNote.setNoteCreateDate(cal); |
1277 | 0 | } else { |
1278 | 0 | copyNote.setNoteCreateDate(Calendar.getInstance()); |
1279 | } | |
1280 | ||
1281 | 0 | if (noteVO.getNoteText() != null){ |
1282 | 0 | copyNote.setNoteText(new String(noteVO.getNoteText())); |
1283 | } | |
1284 | 0 | if (noteVO.getLockVerNbr() != null){ |
1285 | 0 | copyNote.setLockVerNbr(new Integer(noteVO.getLockVerNbr().intValue())); |
1286 | } | |
1287 | 0 | if (notes != null){ |
1288 | 0 | for (int i=0; i<notes.length; i++){ |
1289 | 0 | if (notes[i].getNoteId()!= null && notes[i].getNoteId().equals(copyNote.getNoteId())){ |
1290 | 0 | notes[i] = copyNote; |
1291 | 0 | isUpdateNote = true; |
1292 | 0 | break; |
1293 | } | |
1294 | } | |
1295 | } | |
1296 | // add new note to the notes array | |
1297 | 0 | if (! isUpdateNote){ |
1298 | 0 | copyNote.setNoteId(null); |
1299 | 0 | increaseNotesArraySizeByOne(); |
1300 | 0 | routeHeader.getNotes()[routeHeader.getNotes().length-1]= copyNote; |
1301 | } | |
1302 | } | |
1303 | 0 | } |
1304 | ||
1305 | /** | |
1306 | * Sets a variable on the document. The assignment is deferred until the next time the document is committed (via an action). | |
1307 | * @param name name of the variable | |
1308 | * @param value value of the variable | |
1309 | */ | |
1310 | public void setVariable(String name, String value) throws WorkflowException { | |
1311 | 0 | createDocumentIfNeccessary(); |
1312 | 0 | getRouteHeader().setVariable(name, value); |
1313 | 0 | } |
1314 | ||
1315 | /** | |
1316 | * Gets the value of a variable on the document, creating the document first if it does not exist. | |
1317 | * @param name variable name | |
1318 | * @return variable value | |
1319 | */ | |
1320 | public String getVariable(String name) throws WorkflowException { | |
1321 | 0 | createDocumentIfNeccessary(); |
1322 | 0 | return getRouteHeader().getVariable(name); |
1323 | } | |
1324 | ||
1325 | /** | |
1326 | * | |
1327 | * Tells workflow that the current the document is constructed as will receive all future requests routed to them | |
1328 | * disregarding any force action flags set on the action request. Uses the setVariable method behind the seens so | |
1329 | * an action needs taken on the document to set this state on the document. | |
1330 | * | |
1331 | * @throws WorkflowException | |
1332 | */ | |
1333 | public void setReceiveFutureRequests() throws WorkflowException { | |
1334 | 0 | WorkflowUtility workflowUtility = getWorkflowUtility(); |
1335 | 0 | this.setVariable(workflowUtility.getFutureRequestsKey(principalId), workflowUtility.getReceiveFutureRequestsValue()); |
1336 | 0 | } |
1337 | ||
1338 | /** | |
1339 | * Tell workflow that the current document is constructed as will not receive any future requests routed to them | |
1340 | * disregarding any force action flags set on action requests. Uses the setVariable method behind the scenes so | |
1341 | * an action needs taken on the document to set this state on the document. | |
1342 | * | |
1343 | * @throws WorkflowException | |
1344 | */ | |
1345 | public void setDoNotReceiveFutureRequests() throws WorkflowException { | |
1346 | 0 | WorkflowUtility workflowUtility = getWorkflowUtility(); |
1347 | 0 | this.setVariable(workflowUtility.getFutureRequestsKey(principalId), workflowUtility.getDoNotReceiveFutureRequestsValue()); |
1348 | 0 | } |
1349 | ||
1350 | /** | |
1351 | * Clears any state set on the document regarding a user receiving or not receiving action requests. Uses the setVariable method | |
1352 | * behind the seens so an action needs taken on the document to set this state on the document. | |
1353 | * | |
1354 | * @throws WorkflowException | |
1355 | */ | |
1356 | public void setClearFutureRequests() throws WorkflowException { | |
1357 | 0 | WorkflowUtility workflowUtility = getWorkflowUtility(); |
1358 | 0 | this.setVariable(workflowUtility.getFutureRequestsKey(principalId), workflowUtility.getClearFutureRequestsValue()); |
1359 | 0 | } |
1360 | ||
1361 | /** | |
1362 | * Deletes the note of with the same id as that of the argument on the document. | |
1363 | * @param noteVO the note to test for deletion | |
1364 | * @return whether the note is already marked for deletion. | |
1365 | */ | |
1366 | private boolean isDeletedNote(NoteDTO noteVO) { | |
1367 | 0 | NoteDTO[] notesToDelete = routeHeader.getNotesToDelete(); |
1368 | 0 | if (notesToDelete != null){ |
1369 | 0 | for (int i=0; i<notesToDelete.length; i++){ |
1370 | 0 | if (notesToDelete[i].getNoteId().equals(noteVO.getNoteId())){ |
1371 | 0 | return true; |
1372 | } | |
1373 | } | |
1374 | } | |
1375 | 0 | return false; |
1376 | } | |
1377 | ||
1378 | /** | |
1379 | * Increases the size of the routeHeader notes VO array | |
1380 | */ | |
1381 | private void increaseNotesArraySizeByOne() { | |
1382 | NoteDTO[] tempArray; | |
1383 | 0 | NoteDTO[] notes = routeHeader.getNotes(); |
1384 | 0 | if (notes == null){ |
1385 | 0 | tempArray = new NoteDTO[1]; |
1386 | } else { | |
1387 | 0 | tempArray = new NoteDTO[notes.length + 1]; |
1388 | 0 | for (int i=0; i<notes.length; i++){ |
1389 | 0 | tempArray[i] = notes[i]; |
1390 | } | |
1391 | } | |
1392 | 0 | routeHeader.setNotes(tempArray); |
1393 | 0 | } |
1394 | ||
1395 | /** | |
1396 | * Increases the size of the routeHeader notesToDelete VO array | |
1397 | */ | |
1398 | private void increaseNotesToDeleteArraySizeByOne() { | |
1399 | NoteDTO[] tempArray; | |
1400 | 0 | NoteDTO[] notesToDelete = routeHeader.getNotesToDelete(); |
1401 | 0 | if (notesToDelete == null){ |
1402 | 0 | tempArray = new NoteDTO[1]; |
1403 | } else { | |
1404 | 0 | tempArray = new NoteDTO[notesToDelete.length + 1]; |
1405 | 0 | for (int i=0; i<notesToDelete.length; i++){ |
1406 | 0 | tempArray[i] = notesToDelete[i]; |
1407 | } | |
1408 | } | |
1409 | 0 | routeHeader.setNotesToDelete(tempArray); |
1410 | 0 | } |
1411 | ||
1412 | //add 1 link between 2 docs by DTO, double link added | |
1413 | public void addLinkedDocument(DocumentLinkDTO docLinkVO) throws WorkflowException{ | |
1414 | try{ | |
1415 | 0 | if(DocumentLinkDTO.checkDocLink(docLinkVO)) |
1416 | 0 | getWorkflowUtility().addDocumentLink(docLinkVO); |
1417 | } | |
1418 | 0 | catch(Exception e){ |
1419 | 0 | throw handleExceptionAsRuntime(e); |
1420 | 0 | } |
1421 | 0 | } |
1422 | ||
1423 | //get link from orgn doc to a specifc doc | |
1424 | public DocumentLinkDTO getLinkedDocument(DocumentLinkDTO docLinkVO) throws WorkflowException{ | |
1425 | try{ | |
1426 | 0 | if(DocumentLinkDTO.checkDocLink(docLinkVO)) |
1427 | 0 | return getWorkflowUtility().getLinkedDocument(docLinkVO); |
1428 | else | |
1429 | 0 | return null; |
1430 | } | |
1431 | 0 | catch(Exception e){ |
1432 | 0 | throw handleExceptionAsRuntime(e); |
1433 | } | |
1434 | } | |
1435 | ||
1436 | //get all links to orgn doc | |
1437 | public List<DocumentLinkDTO> getLinkedDocumentsByDocId(Long id) throws WorkflowException{ | |
1438 | 0 | if(id == null) |
1439 | 0 | throw new WorkflowException("doc id is null"); |
1440 | try{ | |
1441 | 0 | return getWorkflowUtility().getLinkedDocumentsByDocId(id); |
1442 | } | |
1443 | 0 | catch (Exception e) { |
1444 | 0 | throw handleExceptionAsRuntime(e); |
1445 | } | |
1446 | } | |
1447 | ||
1448 | //remove all links from orgn: double links removed | |
1449 | public void removeLinkedDocuments(Long docId) throws WorkflowException{ | |
1450 | ||
1451 | 0 | if(docId == null) |
1452 | 0 | throw new WorkflowException("doc id is null"); |
1453 | ||
1454 | try{ | |
1455 | 0 | getWorkflowUtility().deleteDocumentLinksByDocId(docId); |
1456 | } | |
1457 | 0 | catch (Exception e) { |
1458 | 0 | throw handleExceptionAsRuntime(e); |
1459 | 0 | } |
1460 | 0 | } |
1461 | ||
1462 | //remove link between 2 docs, double link removed | |
1463 | public void removeLinkedDocument(DocumentLinkDTO docLinkVO) throws WorkflowException{ | |
1464 | ||
1465 | try{ | |
1466 | 0 | if(DocumentLinkDTO.checkDocLink(docLinkVO)) |
1467 | 0 | getWorkflowUtility().deleteDocumentLink(docLinkVO); |
1468 | } | |
1469 | 0 | catch(Exception e){ |
1470 | 0 | throw handleExceptionAsRuntime(e); |
1471 | 0 | } |
1472 | 0 | } |
1473 | ||
1474 | } |