Coverage Report - org.kuali.rice.kew.actions.RevokeAdHocAction
 
Classes in this File Line Coverage Branch Coverage Complexity
RevokeAdHocAction
0%
0/30
0%
0/12
2.8
 
 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.actions;
 18  
 
 19  
 import org.apache.log4j.MDC;
 20  
 import org.kuali.rice.kew.actionrequest.ActionRequestValue;
 21  
 import org.kuali.rice.kew.actionrequest.Recipient;
 22  
 import org.kuali.rice.kew.actiontaken.ActionTakenValue;
 23  
 import org.kuali.rice.kew.exception.InvalidActionTakenException;
 24  
 import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue;
 25  
 import org.kuali.rice.kew.util.KEWConstants;
 26  
 import org.kuali.rice.kim.bo.entity.KimPrincipal;
 27  
 
 28  
 import java.util.ArrayList;
 29  
 import java.util.List;
 30  
 
 31  
 
 32  
 /**
 33  
  * The RevokeAdHocApprove revokes the specified AdHoc requests.
 34  
  *
 35  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 36  
  */
 37  
 public class RevokeAdHocAction extends ActionTakenEvent {
 38  
 
 39  0
     private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(RevokeAdHocAction.class);
 40  
 
 41  
     private AdHocRevoke revoke;
 42  
 
 43  
     public RevokeAdHocAction(DocumentRouteHeaderValue routeHeader, KimPrincipal principal) {
 44  0
         super(KEWConstants.ACTION_TAKEN_ADHOC_REVOKED_CD, routeHeader, principal);
 45  0
     }
 46  
 
 47  
     public RevokeAdHocAction(DocumentRouteHeaderValue routeHeader, KimPrincipal principal, AdHocRevoke revoke, String annotation) {
 48  0
         super(KEWConstants.ACTION_TAKEN_ADHOC_REVOKED_CD, routeHeader, principal, annotation);
 49  0
         this.revoke = revoke;
 50  0
     }
 51  
 
 52  
     /* (non-Javadoc)
 53  
      * @see org.kuali.rice.kew.actions.ActionTakenEvent#isActionCompatibleRequest(java.util.List)
 54  
      */
 55  
     @Override
 56  
     public String validateActionRules() {
 57  0
         if (!getRouteHeader().isValidActionToTake(getActionPerformedCode())) {
 58  0
             return "Revoke adhoc request is not valid on this document";
 59  
         }
 60  0
         return "";
 61  
     }
 62  
     
 63  
     @Override
 64  
     public String validateActionRules(List<ActionRequestValue> actionRequests) {
 65  0
             return validateActionRules();
 66  
     }
 67  
 
 68  
     /**
 69  
      * Records the approve action.
 70  
      * - Checks to make sure the document status allows the action.
 71  
      * - Checks that the user has not taken a previous action.
 72  
      * - Deactivates the pending requests for this user
 73  
      * - Records the action
 74  
      *
 75  
      * @throws InvalidActionTakenException
 76  
      */
 77  
     public void recordAction() throws InvalidActionTakenException {
 78  0
             MDC.put("docId", getRouteHeader().getRouteHeaderId());
 79  0
         updateSearchableAttributesIfPossible();
 80  
 
 81  0
         String errorMessage = validateActionRules();
 82  0
         if (!org.apache.commons.lang.StringUtils.isEmpty(errorMessage)) {
 83  0
             throw new InvalidActionTakenException(errorMessage);
 84  
         }
 85  
 
 86  0
         LOG.debug("Revoking adhoc request : " + annotation);
 87  
 
 88  0
         List<ActionRequestValue> requestsToRevoke = new ArrayList<ActionRequestValue>();
 89  0
         List<ActionRequestValue> actionRequests = getActionRequestService().findPendingRootRequestsByDocId(getRouteHeaderId());
 90  0
         for (ActionRequestValue actionRequest : actionRequests)
 91  
         {
 92  0
             if (revoke.matchesActionRequest(actionRequest))
 93  
             {
 94  0
                 requestsToRevoke.add(actionRequest);
 95  
             }
 96  
         }
 97  0
         if (requestsToRevoke.isEmpty() && revoke.getActionRequestId() != null) {
 98  0
                 throw new InvalidActionTakenException("Failed to revoke action request with id " + revoke.getActionRequestId() +
 99  
                                 ".  ID does not represent a valid ad hoc request!");
 100  
         }
 101  
 
 102  0
         Recipient delegator = findDelegatorForActionRequests(actionRequests);
 103  0
         LOG.debug("Record the revoke action");
 104  0
         ActionTakenValue actionTaken = saveActionTaken(delegator);
 105  
 
 106  0
         LOG.debug("Revoke all matching action requests, number of matching requests: " + requestsToRevoke.size());
 107  0
         getActionRequestService().deactivateRequests(actionTaken, requestsToRevoke);
 108  0
         notifyActionTaken(actionTaken);
 109  
 
 110  0
     }
 111  
 
 112  
 }