Coverage Report - org.kuali.rice.kew.routeheader.service.impl.WorkflowDocumentServiceImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
WorkflowDocumentServiceImpl
0%
0/211
0%
0/46
1.946
 
 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.routeheader.service.impl;
 18  
 
 19  
 import org.kuali.rice.core.api.exception.RiceRuntimeException;
 20  
 import org.kuali.rice.kew.actionitem.ActionItem;
 21  
 import org.kuali.rice.kew.actionrequest.KimGroupRecipient;
 22  
 import org.kuali.rice.kew.actionrequest.Recipient;
 23  
 import org.kuali.rice.kew.actions.*;
 24  
 import org.kuali.rice.kew.actions.asyncservices.ActionInvocation;
 25  
 import org.kuali.rice.kew.actions.asyncservices.ActionInvocationService;
 26  
 import org.kuali.rice.kew.actiontaken.ActionTakenValue;
 27  
 import org.kuali.rice.kew.docsearch.service.SearchableAttributeProcessingService;
 28  
 import org.kuali.rice.kew.engine.CompatUtils;
 29  
 import org.kuali.rice.kew.engine.RouteContext;
 30  
 import org.kuali.rice.kew.engine.node.RouteNode;
 31  
 import org.kuali.rice.kew.exception.DocumentTypeNotFoundException;
 32  
 import org.kuali.rice.kew.exception.InvalidActionTakenException;
 33  
 import org.kuali.rice.kew.exception.WorkflowException;
 34  
 import org.kuali.rice.kew.exception.WorkflowRuntimeException;
 35  
 import org.kuali.rice.kew.messaging.MessageServiceNames;
 36  
 import org.kuali.rice.kew.postprocessor.PostProcessor;
 37  
 import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue;
 38  
 import org.kuali.rice.kew.routeheader.service.WorkflowDocumentService;
 39  
 import org.kuali.rice.kew.service.KEWServiceLocator;
 40  
 import org.kuali.rice.kew.util.KEWConstants;
 41  
 import org.kuali.rice.kim.bo.entity.KimPrincipal;
 42  
 import org.kuali.rice.kim.service.KIMServiceLocator;
 43  
 
 44  
 import java.sql.Timestamp;
 45  
 import java.util.*;
 46  
 
 47  
 /**
 48  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 49  
  *
 50  
  * this class mainly interacts with ActionEvent 'action' classes and non-vo objects.
 51  
  *
 52  
  */
 53  
 
 54  0
 public class WorkflowDocumentServiceImpl implements WorkflowDocumentService {
 55  
 
 56  0
         private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(WorkflowDocumentServiceImpl.class);
 57  
 
 58  
         private void init(DocumentRouteHeaderValue routeHeader) {
 59  0
                 KEWServiceLocator.getRouteHeaderService().lockRouteHeader(routeHeader.getRouteHeaderId(), true);
 60  0
                 KEWServiceLocator.getRouteHeaderService().saveRouteHeader(routeHeader);
 61  0
         }
 62  
 
 63  
     private DocumentRouteHeaderValue finish(DocumentRouteHeaderValue routeHeader) {
 64  
             // reload the document from the database to get a "fresh and clean" copy if we aren't in the context of a
 65  
             // document being routed
 66  0
             if (RouteContext.getCurrentRouteContext().getDocument() == null) {
 67  0
                     return KEWServiceLocator.getRouteHeaderService().getRouteHeader(routeHeader.getRouteHeaderId(), true);
 68  
             } else {
 69  
                     // we could enter this case if someone calls a method on WorkflowDocument (such as app specific route)
 70  
                     // from their post processor, in that case, if we cleared the database case as above we would
 71  
                     // end up getting an optimistic lock exception when the engine attempts to save the document after
 72  
                     // the post processor call
 73  0
                     return routeHeader;
 74  
             }
 75  
     }
 76  
 
 77  
         public DocumentRouteHeaderValue acknowledgeDocument(String principalId, DocumentRouteHeaderValue routeHeader, String annotation) throws InvalidActionTakenException {
 78  0
                 KimPrincipal principal = loadPrincipal(principalId);
 79  0
                 AcknowledgeAction action = new AcknowledgeAction(routeHeader, principal, annotation);
 80  0
                 action.performAction();
 81  0
                 return finish(routeHeader);
 82  
         }
 83  
 
 84  
         public DocumentRouteHeaderValue releaseGroupAuthority(String principalId, DocumentRouteHeaderValue routeHeader, String groupId, String annotation) throws InvalidActionTakenException {
 85  0
                 KimPrincipal principal = loadPrincipal(principalId);
 86  0
                 ReleaseWorkgroupAuthority action = new ReleaseWorkgroupAuthority(routeHeader, principal, annotation, groupId);
 87  0
                 action.performAction();
 88  0
                 return finish(routeHeader);
 89  
         }
 90  
 
 91  
         public DocumentRouteHeaderValue takeGroupAuthority(String principalId, DocumentRouteHeaderValue routeHeader, String groupId, String annotation) throws InvalidActionTakenException {
 92  0
                 KimPrincipal principal = loadPrincipal(principalId);
 93  0
                 TakeWorkgroupAuthority action = new TakeWorkgroupAuthority(routeHeader, principal, annotation, groupId);
 94  0
                 action.performAction();
 95  0
                 return finish(routeHeader);
 96  
         }
 97  
 
 98  
         public DocumentRouteHeaderValue approveDocument(String principalId, DocumentRouteHeaderValue routeHeader, String annotation) throws InvalidActionTakenException {
 99  0
                 KimPrincipal principal = loadPrincipal(principalId);
 100  0
                 ApproveAction action = new ApproveAction(routeHeader, principal, annotation);
 101  0
                 action.performAction();
 102  0
                 return finish(routeHeader);
 103  
         }
 104  
         
 105  
         public DocumentRouteHeaderValue placeInExceptionRouting(String principalId, DocumentRouteHeaderValue routeHeader, String annotation) throws InvalidActionTakenException {
 106  
                   try {
 107  0
                           KEWServiceLocator.getExceptionRoutingService().placeInExceptionRouting(annotation, null, routeHeader.getRouteHeaderId());
 108  0
                   } catch (Exception e) {
 109  0
                           throw new RiceRuntimeException("Failed to place the document into exception routing!", e);
 110  0
                   }
 111  0
                   return finish(routeHeader);
 112  
           }
 113  
 
 114  
         public DocumentRouteHeaderValue adHocRouteDocumentToPrincipal(String principalId, DocumentRouteHeaderValue document, String actionRequested, String nodeName, String annotation, String targetPrincipalId,
 115  
                         String responsibilityDesc, Boolean forceAction, String requestLabel) throws WorkflowException {
 116  0
                 KimPrincipal principal = loadPrincipal(principalId);
 117  0
                 Recipient recipient = KEWServiceLocator.getIdentityHelperService().getPrincipalRecipient(targetPrincipalId);
 118  0
                 AdHocAction action = new AdHocAction(document, principal, annotation, actionRequested, nodeName, recipient, responsibilityDesc, forceAction, requestLabel);
 119  0
                 action.performAction();
 120  0
                 return finish(document);
 121  
         }
 122  
 
 123  
         public DocumentRouteHeaderValue adHocRouteDocumentToGroup(String principalId, DocumentRouteHeaderValue document, String actionRequested, String nodeName, String annotation, String groupId,
 124  
                         String responsibilityDesc, Boolean forceAction, String requestLabel) throws WorkflowException {
 125  0
                 KimPrincipal principal = loadPrincipal(principalId);
 126  0
                 final Recipient recipient = new KimGroupRecipient(KIMServiceLocator.getIdentityManagementService().getGroup(groupId));
 127  0
                 AdHocAction action = new AdHocAction(document, principal, annotation, actionRequested, nodeName, recipient, responsibilityDesc, forceAction, requestLabel);
 128  0
                 action.performAction();
 129  0
                 return finish(document);
 130  
         }
 131  
 
 132  
         public DocumentRouteHeaderValue blanketApproval(String principalId, DocumentRouteHeaderValue routeHeader, String annotation, Integer routeLevel) throws InvalidActionTakenException {
 133  0
                 RouteNode node = (routeLevel == null ? null : CompatUtils.getNodeForLevel(routeHeader.getDocumentType(), routeLevel));
 134  0
                 if (node == null && routeLevel != null) {
 135  0
                         throw new InvalidActionTakenException("Could not locate node for route level " + routeLevel);
 136  
                 }
 137  0
                 Set<String> nodeNames = new HashSet<String>();
 138  0
                 if (node != null) {
 139  0
                         nodeNames = Collections.singleton(node.getRouteNodeName());
 140  
                 }
 141  0
                 KimPrincipal principal = loadPrincipal(principalId);
 142  0
                 ActionTakenEvent action = new BlanketApproveAction(routeHeader, principal, annotation, nodeNames);
 143  0
                 action.performAction();
 144  0
                 return finish(routeHeader);
 145  
         }
 146  
 
 147  
         public DocumentRouteHeaderValue blanketApproval(String principalId, DocumentRouteHeaderValue routeHeader, String annotation, Set nodeNames) throws InvalidActionTakenException {
 148  0
                 KimPrincipal principal = loadPrincipal(principalId);
 149  0
                 BlanketApproveAction action = new BlanketApproveAction(routeHeader, principal, annotation, nodeNames);
 150  0
                 action.recordAction();
 151  
 
 152  0
                 return finish(routeHeader);
 153  
         }
 154  
 
 155  
         public DocumentRouteHeaderValue cancelDocument(String principalId, DocumentRouteHeaderValue routeHeader, String annotation) throws InvalidActionTakenException {
 156  
                 // init(routeHeader);
 157  0
                 KimPrincipal principal = loadPrincipal(principalId);
 158  0
                 CancelAction action = new CancelAction(routeHeader, principal, annotation);
 159  0
                 action.recordAction();
 160  0
                 indexForSearchAfterActionIfNecessary(routeHeader);
 161  0
                 return finish(routeHeader);
 162  
         }
 163  
         
 164  
         /**
 165  
          * Does a search index after a non-post processing action completes
 166  
          * @param routeHeader the route header of the document just acted upon
 167  
          */
 168  
         protected void indexForSearchAfterActionIfNecessary(DocumentRouteHeaderValue routeHeader) {
 169  0
                 RouteContext routeContext = RouteContext.getCurrentRouteContext();
 170  0
                 if (routeHeader.getDocumentType().hasSearchableAttributes() && routeContext.isSearchIndexingRequestedForContext()) {
 171  0
                         SearchableAttributeProcessingService searchableAttService = (SearchableAttributeProcessingService) MessageServiceNames.getSearchableAttributeService(routeHeader);
 172  0
                         searchableAttService.indexDocument(routeHeader.getRouteHeaderId()); 
 173  
                 }
 174  0
         }
 175  
 
 176  
         public DocumentRouteHeaderValue clearFYIDocument(String principalId, DocumentRouteHeaderValue routeHeader) throws InvalidActionTakenException {
 177  
                 // init(routeHeader);
 178  0
                 KimPrincipal principal = loadPrincipal(principalId);
 179  0
                 ClearFYIAction action = new ClearFYIAction(routeHeader, principal, "");
 180  0
                 action.recordAction();
 181  0
                 return finish(routeHeader);
 182  
         }
 183  
 
 184  
         public DocumentRouteHeaderValue completeDocument(String principalId, DocumentRouteHeaderValue routeHeader, String annotation) throws InvalidActionTakenException {
 185  0
                 KimPrincipal principal = loadPrincipal(principalId);
 186  0
                 CompleteAction action = new CompleteAction(routeHeader, principal, annotation);
 187  0
                 action.performAction();
 188  0
                 return finish(routeHeader);
 189  
         }
 190  
 
 191  
         public DocumentRouteHeaderValue createDocument(String principalId, DocumentRouteHeaderValue routeHeader) throws DocumentTypeNotFoundException, WorkflowException {
 192  
 
 193  0
                 LOG.debug("Rmi createDocument() with "); // add some sort of a
 194  
                                                                                                         // routeheader logger
 195  
 
 196  0
                 if (routeHeader.getRouteHeaderId() != null) { // this is a debateable
 197  
                                                                                                                 // check - means the
 198  
                                                                                                                 // client is off
 199  0
                         throw new InvalidActionTakenException("Document already has a Document id");
 200  
                 }
 201  0
                 KimPrincipal principal = loadPrincipal(principalId);
 202  0
                 boolean canInitiate = KEWServiceLocator.getDocumentTypePermissionService().canInitiate(principalId, routeHeader.getDocumentType());
 203  
 
 204  0
                 if (!canInitiate) {
 205  0
                         throw new InvalidActionTakenException("Principal with name '" + principal.getPrincipalName() + "' is not authorized to initiate documents of type '" + routeHeader.getDocumentType().getName());
 206  
                 }
 207  
 
 208  0
         if (!routeHeader.getDocumentType().isDocTypeActive()) {
 209  
             // don't allow creation if document type is inactive
 210  0
             throw new InvalidActionTakenException("Document type '" + routeHeader.getDocumentType().getName() + "' is inactive");
 211  
         }
 212  
 
 213  0
                 routeHeader.setInitiatorWorkflowId(principalId);
 214  0
                 if (routeHeader.getDocRouteStatus() == null) {
 215  0
                         routeHeader.setDocRouteStatus(KEWConstants.ROUTE_HEADER_INITIATED_CD);
 216  
                 }
 217  0
                 if (routeHeader.getDocRouteLevel() == null) {
 218  0
                         routeHeader.setDocRouteLevel(Integer.valueOf(KEWConstants.ADHOC_ROUTE_LEVEL));
 219  
                 }
 220  0
                 if (routeHeader.getCreateDate() == null) {
 221  0
                         routeHeader.setCreateDate(new Timestamp(new Date().getTime()));
 222  
                 }
 223  0
                 if (routeHeader.getDocVersion() == null) {
 224  0
                         routeHeader.setDocVersion(Integer.valueOf(KEWConstants.CURRENT_DOCUMENT_VERSION));
 225  
                 }
 226  0
                 if (routeHeader.getDocContent() == null) {
 227  0
                         routeHeader.setDocContent(KEWConstants.DEFAULT_DOCUMENT_CONTENT);
 228  
                 }
 229  0
                 routeHeader.setStatusModDate(new Timestamp(new Date().getTime()));
 230  0
                 KEWServiceLocator.getRouteHeaderService().saveRouteHeader(routeHeader);
 231  0
                 KEWServiceLocator.getWorkflowEngine().initializeDocument(routeHeader);
 232  0
                 KEWServiceLocator.getRouteHeaderService().saveRouteHeader(routeHeader);
 233  0
                 return routeHeader;
 234  
         }
 235  
 
 236  
         public DocumentRouteHeaderValue disapproveDocument(String principalId, DocumentRouteHeaderValue routeHeader, String annotation) throws InvalidActionTakenException {
 237  0
                 KimPrincipal principal = loadPrincipal(principalId);
 238  0
                 DisapproveAction action = new DisapproveAction(routeHeader, principal, annotation);
 239  0
                 action.recordAction();
 240  0
                 indexForSearchAfterActionIfNecessary(routeHeader);
 241  0
                 return finish(routeHeader);
 242  
         }
 243  
 
 244  
         public DocumentRouteHeaderValue returnDocumentToPreviousRouteLevel(String principalId, DocumentRouteHeaderValue routeHeader, Integer destRouteLevel, String annotation)
 245  
                 throws InvalidActionTakenException {
 246  0
                 DocumentRouteHeaderValue result = null;
 247  
                 
 248  0
                 if (destRouteLevel != null) {
 249  0
                         RouteNode node = CompatUtils.getNodeForLevel(routeHeader.getDocumentType(), destRouteLevel);
 250  0
                         if (node == null) {
 251  0
                                 throw new InvalidActionTakenException("Could not locate node for route level " + destRouteLevel);
 252  
                         }
 253  
 
 254  0
                         KimPrincipal principal = loadPrincipal(principalId);
 255  0
                         ReturnToPreviousNodeAction action = new ReturnToPreviousNodeAction(routeHeader, principal, annotation, node.getRouteNodeName(), true);
 256  0
                         action.performAction();
 257  0
                         result = finish(routeHeader);
 258  
                 }
 259  0
                 return result;
 260  
         }
 261  
 
 262  
         public DocumentRouteHeaderValue returnDocumentToPreviousNode(String principalId, DocumentRouteHeaderValue routeHeader, String destinationNodeName, String annotation)
 263  
                         throws InvalidActionTakenException {
 264  0
                 KimPrincipal principal = loadPrincipal(principalId);
 265  0
                 ReturnToPreviousNodeAction action = new ReturnToPreviousNodeAction(routeHeader, principal, annotation, destinationNodeName, true);
 266  0
                 action.performAction();
 267  0
                 return finish(routeHeader);
 268  
         }
 269  
 
 270  
         public DocumentRouteHeaderValue routeDocument(String principalId, DocumentRouteHeaderValue routeHeader, String annotation) throws WorkflowException,
 271  
                         InvalidActionTakenException {
 272  0
                 KimPrincipal principal = loadPrincipal(principalId);
 273  0
                 RouteDocumentAction actionEvent = new RouteDocumentAction(routeHeader, principal, annotation);
 274  0
                 actionEvent.performAction();
 275  0
         LOG.info("routeDocument: " + routeHeader);
 276  0
                 return finish(routeHeader);
 277  
         }
 278  
 
 279  
         public DocumentRouteHeaderValue saveRoutingData(String principalId, DocumentRouteHeaderValue routeHeader) {
 280  0
                 KEWServiceLocator.getRouteHeaderService().saveRouteHeader(routeHeader);
 281  
                 
 282  
                 // save routing data should invoke the post processor doActionTaken for SAVE
 283  0
                   ActionTakenValue val = new ActionTakenValue();
 284  0
                   val.setActionTaken(KEWConstants.ACTION_TAKEN_SAVED_CD);
 285  0
                   val.setRouteHeaderId(routeHeader.getRouteHeaderId());
 286  0
                   PostProcessor postProcessor = routeHeader.getDocumentType().getPostProcessor();
 287  
                   try {
 288  0
                           postProcessor.doActionTaken(new org.kuali.rice.kew.postprocessor.ActionTakenEvent(routeHeader.getRouteHeaderId(), routeHeader.getAppDocId(), val));
 289  0
                   } catch (Exception e) {
 290  0
                           if (e instanceof RuntimeException) {
 291  0
                                   throw (RuntimeException)e;
 292  
                           }
 293  0
                           throw new WorkflowRuntimeException(e);
 294  0
                   }
 295  
 
 296  0
                   RouteContext routeContext = RouteContext.getCurrentRouteContext();
 297  0
                   if (routeHeader.getDocumentType().hasSearchableAttributes() && !routeContext.isSearchIndexingRequestedForContext()) {
 298  0
                           routeContext.requestSearchIndexingForContext();
 299  
                           
 300  0
                         SearchableAttributeProcessingService searchableAttService = (SearchableAttributeProcessingService) MessageServiceNames.getSearchableAttributeService(routeHeader);
 301  0
                         searchableAttService.indexDocument(routeHeader.getRouteHeaderId());
 302  
                 }
 303  0
                 return finish(routeHeader);
 304  
         }
 305  
 
 306  
         public DocumentRouteHeaderValue saveDocument(String principalId, DocumentRouteHeaderValue routeHeader, String annotation) throws InvalidActionTakenException {
 307  0
                 KimPrincipal principal = loadPrincipal(principalId);
 308  0
                 SaveActionEvent action = new SaveActionEvent(routeHeader, principal, annotation);
 309  0
                 action.performAction();
 310  0
                 return finish(routeHeader);
 311  
         }
 312  
 
 313  
         public void deleteDocument(String principalId, DocumentRouteHeaderValue routeHeader) throws WorkflowException {
 314  0
                 if (routeHeader.getRouteHeaderId() == null) {
 315  0
                         LOG.debug("Null Document id passed.");
 316  0
                         throw new WorkflowException("Document id must not be null.");
 317  
                 }
 318  0
                 KEWServiceLocator.getRouteHeaderService().deleteRouteHeader(routeHeader);
 319  0
         }
 320  
 
 321  
         public void logDocumentAction(String principalId, DocumentRouteHeaderValue routeHeader, String annotation) throws InvalidActionTakenException {
 322  0
                 KimPrincipal principal = loadPrincipal(principalId);
 323  0
                 LogDocumentActionAction action = new LogDocumentActionAction(routeHeader, principal, annotation);
 324  0
                 action.recordAction();
 325  0
         }
 326  
 
 327  
         public DocumentRouteHeaderValue moveDocument(String principalId, DocumentRouteHeaderValue routeHeader, MovePoint movePoint, String annotation) throws InvalidActionTakenException {
 328  0
                 KimPrincipal principal = loadPrincipal(principalId);
 329  0
                 MoveDocumentAction action = new MoveDocumentAction(routeHeader, principal, annotation, movePoint);
 330  0
                 action.performAction();
 331  0
                 return finish(routeHeader);
 332  
         }
 333  
 
 334  
         public DocumentRouteHeaderValue superUserActionRequestApproveAction(String principalId, DocumentRouteHeaderValue routeHeader, Long actionRequestId, String annotation, boolean runPostProcessor)
 335  
                         throws InvalidActionTakenException {
 336  0
                 init(routeHeader);
 337  0
                 KimPrincipal principal = loadPrincipal(principalId);
 338  0
                 SuperUserActionRequestApproveEvent suActionRequestApprove = new SuperUserActionRequestApproveEvent(routeHeader, principal, actionRequestId, annotation, runPostProcessor);
 339  0
                 suActionRequestApprove.recordAction();
 340  
                 // suActionRequestApprove.queueDocument();
 341  0
                 RouteContext.getCurrentRouteContext().requestSearchIndexingForContext(); // make sure indexing is requested
 342  0
                 indexForSearchAfterActionIfNecessary(routeHeader);
 343  0
                 return finish(routeHeader);
 344  
         }
 345  
 
 346  
     /**
 347  
      * TODO As with superUserReturnDocumentToPreviousNode, we allow for the passing in of a document ID here to allow for
 348  
      * the document load inside the current running transaction.  Otherwise we get an optimistic lock exception
 349  
      * when attempting to save the branch after the transition to the 'A' status.
 350  
      */
 351  
     public DocumentRouteHeaderValue superUserActionRequestApproveAction(String principalId, Long documentId, Long actionRequestId, String annotation, boolean runPostProcessor)
 352  
         throws InvalidActionTakenException {
 353  0
         return superUserActionRequestApproveAction(principalId, KEWServiceLocator.getRouteHeaderService().getRouteHeader(documentId), actionRequestId, annotation, runPostProcessor);
 354  
     }
 355  
 
 356  
         public DocumentRouteHeaderValue superUserApprove(String principalId, DocumentRouteHeaderValue routeHeader, String annotation, boolean runPostProcessor) throws InvalidActionTakenException {
 357  0
                 init(routeHeader);
 358  0
                 KimPrincipal principal = loadPrincipal(principalId);
 359  0
                 new SuperUserApproveEvent(routeHeader, principal, annotation, runPostProcessor).recordAction();
 360  0
                 RouteContext.getCurrentRouteContext().requestSearchIndexingForContext(); // make sure indexing is requested
 361  0
                 indexForSearchAfterActionIfNecessary(routeHeader);
 362  0
                 return finish(routeHeader);
 363  
         }
 364  
 
 365  
         public DocumentRouteHeaderValue superUserCancelAction(String principalId, DocumentRouteHeaderValue routeHeader, String annotation, boolean runPostProcessor) throws InvalidActionTakenException {
 366  0
                 init(routeHeader);
 367  0
                 KimPrincipal principal = loadPrincipal(principalId);
 368  0
                 new SuperUserCancelEvent(routeHeader, principal, annotation, runPostProcessor).recordAction();
 369  0
                 RouteContext.getCurrentRouteContext().requestSearchIndexingForContext(); // make sure indexing is requested
 370  0
                 indexForSearchAfterActionIfNecessary(routeHeader);
 371  0
                 return finish(routeHeader);
 372  
         }
 373  
 
 374  
         public DocumentRouteHeaderValue superUserDisapproveAction(String principalId, DocumentRouteHeaderValue routeHeader, String annotation, boolean runPostProcessor) throws InvalidActionTakenException {
 375  0
                 init(routeHeader);
 376  0
                 KimPrincipal principal = loadPrincipal(principalId);
 377  0
                 new SuperUserDisapproveEvent(routeHeader, principal, annotation, runPostProcessor).recordAction();
 378  0
                 RouteContext.getCurrentRouteContext().requestSearchIndexingForContext(); // make sure indexing is requested
 379  0
                 indexForSearchAfterActionIfNecessary(routeHeader);
 380  0
                 return finish(routeHeader);
 381  
         }
 382  
 
 383  
         public DocumentRouteHeaderValue superUserNodeApproveAction(String principalId, DocumentRouteHeaderValue routeHeader, String nodeName, String annotation, boolean runPostProcessor) throws InvalidActionTakenException {
 384  0
                 init(routeHeader);
 385  0
                 KimPrincipal principal = loadPrincipal(principalId);
 386  0
                 new SuperUserNodeApproveEvent(routeHeader, principal, annotation, runPostProcessor, nodeName).recordAction();
 387  0
                 indexForSearchAfterActionIfNecessary(routeHeader);
 388  0
                 return finish(routeHeader);
 389  
         }
 390  
 
 391  
         /**
 392  
          * TODO As with superUserReturnDocumentToPreviousNode, we allow for the passing in of a document ID here to allow for
 393  
          * the document load inside the current running transaction.  Otherwise we get an optimistic lock exception
 394  
          * when attempting to save the branch after the transition to the 'A' status.
 395  
          */
 396  
         public DocumentRouteHeaderValue superUserNodeApproveAction(String principalId, Long documentId, String nodeName, String annotation, boolean runPostProcessor) throws InvalidActionTakenException {
 397  0
                 return superUserNodeApproveAction(principalId, KEWServiceLocator.getRouteHeaderService().getRouteHeader(documentId), nodeName, annotation, runPostProcessor);
 398  
         }
 399  
 
 400  
         /**
 401  
          * TODO remove this implementation in favor of having the SuperUserAction call through the WorkflowDocument object.  This
 402  
          * method is here to resolve KULWF-727 where we were getting an optimistic lock exception from the super user screen on
 403  
          * return to previous node.  This allows us to load the DocumentRouteHeaderValue inside of the transaction interceptor
 404  
          * so that we can stay within the same PersistenceBroker cache.
 405  
          */
 406  
         public DocumentRouteHeaderValue superUserReturnDocumentToPreviousNode(String principalId, Long documentId, String nodeName, String annotation, boolean runPostProcessor)
 407  
                 throws InvalidActionTakenException {
 408  0
                 return superUserReturnDocumentToPreviousNode(principalId, KEWServiceLocator.getRouteHeaderService().getRouteHeader(documentId), nodeName, annotation, runPostProcessor);
 409  
         }
 410  
 
 411  
         public DocumentRouteHeaderValue superUserReturnDocumentToPreviousNode(String principalId, DocumentRouteHeaderValue routeHeader, String nodeName, String annotation, boolean runPostProcessor)
 412  
                         throws InvalidActionTakenException {
 413  0
                 init(routeHeader);
 414  0
                 KimPrincipal principal = loadPrincipal(principalId);
 415  0
                 SuperUserReturnToPreviousNodeAction action = new SuperUserReturnToPreviousNodeAction(routeHeader, principal, annotation, runPostProcessor, nodeName);
 416  0
                 action.recordAction();
 417  0
                 RouteContext.getCurrentRouteContext().requestSearchIndexingForContext(); // make sure indexing is requested
 418  0
                 indexForSearchAfterActionIfNecessary(routeHeader);
 419  0
                 return finish(routeHeader);
 420  
         }
 421  
 
 422  
         public void takeMassActions(String principalId, List actionInvocations) {
 423  0
                 KimPrincipal principal = loadPrincipal(principalId);
 424  0
                 for (Iterator iterator = actionInvocations.iterator(); iterator.hasNext();) {
 425  0
                         ActionInvocation invocation = (ActionInvocation) iterator.next();
 426  0
                         ActionItem actionItem = KEWServiceLocator.getActionListService().findByActionItemId(invocation.getActionItemId());
 427  0
                         if (actionItem == null) {
 428  0
                                 LOG.warn("Could not locate action item for the given action item id [" + invocation.getActionItemId() + "], not taking mass action on it.");
 429  0
                                 continue;
 430  
                         }
 431  0
                         KEWServiceLocator.getActionListService().deleteActionItem(actionItem, true);
 432  0
                         ActionInvocationService actionInvocService = MessageServiceNames.getActionInvocationProcessorService(
 433  
                                         KEWServiceLocator.getRouteHeaderService().getRouteHeader(actionItem.getRouteHeaderId()));
 434  0
                         actionInvocService.invokeAction(principalId, actionItem.getRouteHeaderId(), invocation);
 435  
 //                        ActionInvocationProcessor.queueActionInvocation(user, actionItem.getRouteHeaderId(), invocation);
 436  0
                 }
 437  0
         }
 438  
 
 439  
         public DocumentRouteHeaderValue revokeAdHocRequests(String principalId, DocumentRouteHeaderValue document, AdHocRevoke revoke, String annotation) throws InvalidActionTakenException {
 440  0
                 KimPrincipal principal = loadPrincipal(principalId);
 441  0
                 RevokeAdHocAction action = new RevokeAdHocAction(document, principal, revoke, annotation);
 442  0
                 action.performAction();
 443  0
                 return finish(document);
 444  
         }
 445  
 
 446  
         protected KimPrincipal loadPrincipal(String principalId) {
 447  0
                 return KEWServiceLocator.getIdentityHelperService().getPrincipal(principalId);
 448  
         }
 449  
 
 450  
 }