Coverage Report - org.kuali.rice.kew.rule.RolePokerProcessor
 
Classes in this File Line Coverage Branch Coverage Complexity
RolePokerProcessor
0%
0/29
0%
0/12
4
 
 1  
 /*
 2  
  * Copyright 2005-2008 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.rule;
 18  
 
 19  
 import org.kuali.rice.kew.api.WorkflowRuntimeException;
 20  
 import org.kuali.rice.kew.exception.WorkflowException;
 21  
 import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue;
 22  
 import org.kuali.rice.kew.service.KEWServiceLocator;
 23  
 
 24  
 import java.util.ArrayList;
 25  
 import java.util.List;
 26  
 
 27  
 
 28  
 /**
 29  
  * RolePoker implementation which handles initiating refresh of the "poked" role.
 30  
  *
 31  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 32  
  */
 33  0
 public class RolePokerProcessor implements RolePoker {
 34  
 
 35  
         public void reResolveRole(String documentId, String roleName, String qualifiedRoleNameLabel) {
 36  0
                 KEWServiceLocator.getRouteHeaderService().lockRouteHeader(documentId, true);
 37  0
                 if (org.apache.commons.lang.StringUtils.isEmpty(roleName)) {
 38  0
                         throw new IllegalArgumentException("Can't poke a role without a role name!");
 39  
                 }
 40  0
                 DocumentRouteHeaderValue document = KEWServiceLocator.getRouteHeaderService().getRouteHeader(documentId);
 41  
                 try {
 42  0
                 if (qualifiedRoleNameLabel == null) {
 43  0
                         KEWServiceLocator.getRoleService().reResolveRole(document, roleName);
 44  
                 } else {
 45  0
                         KEWServiceLocator.getRoleService().reResolveQualifiedRole(document, roleName, qualifiedRoleNameLabel);
 46  
                 }
 47  0
                 } catch (WorkflowException e) {
 48  0
                         throw new WorkflowRuntimeException(e);
 49  0
                 }
 50  0
         }
 51  
 
 52  
         public void reResolveRole(String documentId, String roleName) {
 53  0
                 reResolveRole(documentId, roleName, null);
 54  0
         }
 55  
                 
 56  
         private String[] parseParameters(String parameters) {
 57  0
                 List strings = new ArrayList();
 58  0
                 boolean isEscaped = false;
 59  0
                 StringBuffer buffer = new StringBuffer();
 60  0
                 for (int index = 0; index < parameters.length(); index++) {
 61  0
                         char character = parameters.charAt(index);
 62  0
                         if (isEscaped) {
 63  0
                                 isEscaped = false;
 64  0
                                 buffer.append(character);
 65  
                         } else {
 66  0
                                 if (character == '\\') {
 67  0
                                         isEscaped = true;
 68  0
                                 } else if (character == ',') {
 69  0
                                         strings.add(buffer.toString());
 70  0
                                         buffer = new StringBuffer();
 71  
                                 } else {
 72  0
                                         buffer.append(character);
 73  
                                 }
 74  
                         }
 75  
                 }
 76  0
                 return (String[])strings.toArray(new String[0]);
 77  
         }
 78  
 
 79  
 
 80  
 
 81  
 }