Coverage Report - org.kuali.rice.kew.dto.DTOConverter
 
Classes in this File Line Coverage Branch Coverage Complexity
DTOConverter
0%
0/835
0%
0/352
4.77
DTOConverter$RouteNodeInstanceLoader
N/A
N/A
4.77
 
 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.dto;
 18  
 
 19  
 import org.apache.commons.lang.ArrayUtils;
 20  
 import org.apache.commons.lang.StringUtils;
 21  
 import org.apache.log4j.Logger;
 22  
 import org.kuali.rice.core.api.exception.RiceRuntimeException;
 23  
 import org.kuali.rice.core.api.reflect.ObjectDefinition;
 24  
 import org.kuali.rice.core.api.reflect.PropertyDefinition;
 25  
 import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
 26  
 import org.kuali.rice.core.api.reflect.DataDefinition;
 27  
 import org.kuali.rice.core.api.reflect.ObjectDefinition;
 28  
 import org.kuali.rice.core.api.reflect.PropertyDefinition;
 29  
 import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
 30  
 import org.kuali.rice.core.util.ConcreteKeyValue;
 31  
 import org.kuali.rice.core.util.KeyValue;
 32  
 import org.kuali.rice.core.framework.persistence.jdbc.sql.SQLUtils;
 33  
 import org.kuali.rice.core.util.XmlHelper;
 34  
 import org.kuali.rice.core.util.XmlJotter;
 35  
 import org.kuali.rice.core.xml.dto.AttributeSet;
 36  
 import org.kuali.rice.kew.actionitem.ActionItem;
 37  
 import org.kuali.rice.kew.actionrequest.*;
 38  
 import org.kuali.rice.kew.actions.AdHocRevoke;
 39  
 import org.kuali.rice.kew.actions.MovePoint;
 40  
 import org.kuali.rice.kew.actions.ValidActions;
 41  
 import org.kuali.rice.kew.actiontaken.ActionTakenValue;
 42  
 import org.kuali.rice.kew.definition.AttributeDefinition;
 43  
 import org.kuali.rice.kew.docsearch.*;
 44  
 import org.kuali.rice.kew.docsearch.web.SearchAttributeFormContainer;
 45  
 import org.kuali.rice.kew.docsearch.xml.GenericXMLSearchableAttribute;
 46  
 import org.kuali.rice.kew.doctype.bo.DocumentType;
 47  
 import org.kuali.rice.kew.documentlink.DocumentLink;
 48  
 import org.kuali.rice.kew.engine.node.*;
 49  
 import org.kuali.rice.kew.engine.node.Process;
 50  
 import org.kuali.rice.kew.engine.simulation.SimulationActionToTake;
 51  
 import org.kuali.rice.kew.engine.simulation.SimulationCriteria;
 52  
 import org.kuali.rice.kew.exception.DocumentTypeNotFoundException;
 53  
 import org.kuali.rice.kew.exception.WorkflowException;
 54  
 import org.kuali.rice.kew.exception.WorkflowRuntimeException;
 55  
 import org.kuali.rice.kew.notes.Note;
 56  
 import org.kuali.rice.kew.notes.service.NoteService;
 57  
 import org.kuali.rice.kew.postprocessor.*;
 58  
 import org.kuali.rice.kew.routeheader.DocumentContent;
 59  
 import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue;
 60  
 import org.kuali.rice.kew.routeheader.DocumentStatusTransition;
 61  
 import org.kuali.rice.kew.routeheader.StandardDocumentContent;
 62  
 import org.kuali.rice.kew.rule.*;
 63  
 import org.kuali.rice.kew.rule.bo.RuleAttribute;
 64  
 import org.kuali.rice.kew.rule.xmlrouting.GenericXMLRuleAttribute;
 65  
 import org.kuali.rice.kew.service.KEWServiceLocator;
 66  
 import org.kuali.rice.kew.user.RoleRecipient;
 67  
 import org.kuali.rice.kew.util.KEWConstants;
 68  
 import org.kuali.rice.kew.util.ResponsibleParty;
 69  
 import org.kuali.rice.kew.web.KeyValueSort;
 70  
 import org.kuali.rice.kim.bo.Group;
 71  
 import org.kuali.rice.kim.bo.Person;
 72  
 import org.kuali.rice.kim.bo.entity.KimPrincipal;
 73  
 import org.kuali.rice.kim.service.KIMServiceLocator;
 74  
 import org.w3c.dom.Document;
 75  
 import org.w3c.dom.Element;
 76  
 import org.w3c.dom.NodeList;
 77  
 
 78  
 import javax.xml.parsers.DocumentBuilder;
 79  
 import javax.xml.parsers.DocumentBuilderFactory;
 80  
 import java.sql.Timestamp;
 81  
 import java.util.*;
 82  
 
 83  
 
 84  
 /**
 85  
  * Translates Workflow server side beans into client side VO beans.
 86  
  *
 87  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 88  
  */
 89  0
 public class DTOConverter {
 90  0
     private static final Logger LOG = Logger.getLogger(DTOConverter.class);
 91  
     
 92  
     public static RouteHeaderDTO convertRouteHeader(DocumentRouteHeaderValue routeHeader, String principalId) throws WorkflowException {
 93  0
         RouteHeaderDTO routeHeaderVO = new RouteHeaderDTO();
 94  0
         if (routeHeader == null) {
 95  0
             return null;
 96  
         }
 97  0
         populateRouteHeaderVO(routeHeaderVO, routeHeader);
 98  
 
 99  0
         if (principalId != null) {
 100  0
             routeHeaderVO.setUserBlanketApprover(false); // default to false
 101  0
             if (routeHeader.getDocumentType() != null) {
 102  0
                     boolean isBlanketApprover = KEWServiceLocator.getDocumentTypePermissionService().canBlanketApprove(principalId, routeHeader.getDocumentType(), routeHeader.getDocRouteStatus(), routeHeader.getInitiatorWorkflowId());
 103  0
                 routeHeaderVO.setUserBlanketApprover(isBlanketApprover);
 104  
             }
 105  0
             AttributeSet actionsRequested = KEWServiceLocator.getActionRequestService().getActionsRequested(routeHeader, principalId, true);
 106  0
             for (String actionRequestCode : actionsRequested.keySet()) {
 107  0
                                 if (KEWConstants.ACTION_REQUEST_FYI_REQ.equals(actionRequestCode)) {
 108  0
                     routeHeaderVO.setFyiRequested(Boolean.parseBoolean(actionsRequested.get(actionRequestCode)));                                        
 109  
                                 }
 110  0
                                 else if (KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ.equals(actionRequestCode)) {
 111  0
                     routeHeaderVO.setAckRequested(Boolean.parseBoolean(actionsRequested.get(actionRequestCode)));
 112  
                                 }
 113  0
                                 else if (KEWConstants.ACTION_REQUEST_APPROVE_REQ.equals(actionRequestCode)) {
 114  0
                     routeHeaderVO.setApproveRequested(Boolean.parseBoolean(actionsRequested.get(actionRequestCode)));                                        
 115  
                                 }
 116  
                                 else {
 117  0
                     routeHeaderVO.setCompleteRequested(Boolean.parseBoolean(actionsRequested.get(actionRequestCode)));
 118  
                                 }
 119  
                         }
 120  
             // Update notes and notesToDelete arrays in routeHeaderVO
 121  0
             routeHeaderVO.setNotesToDelete(null);
 122  0
             routeHeaderVO.setNotes(convertNotesArrayListToNoteVOArray(routeHeader.getNotes()));
 123  
         }
 124  
 
 125  
 
 126  0
         if (principalId != null) {
 127  0
                 KimPrincipal principal = KEWServiceLocator.getIdentityHelperService().getPrincipal(principalId);
 128  0
             routeHeaderVO.setValidActions(convertValidActions(KEWServiceLocator.getActionRegistry().getValidActions(principal, routeHeader)));
 129  
         }
 130  0
         return routeHeaderVO;
 131  
     }
 132  
 
 133  
     public static ValidActionsDTO convertValidActions(ValidActions validActions) {
 134  0
         ValidActionsDTO validActionsVO = new ValidActionsDTO();
 135  0
         for (String actionTakenCode : validActions.getActionTakenCodes()) {
 136  0
             validActionsVO.addValidActionsAllowed(actionTakenCode);
 137  
         }
 138  0
         return validActionsVO;
 139  
     }
 140  
 
 141  
     private static void populateRouteHeaderVO(RouteHeaderDTO routeHeaderVO, DocumentRouteHeaderValue routeHeader) throws WorkflowException {
 142  0
         routeHeaderVO.setRouteHeaderId(routeHeader.getRouteHeaderId());
 143  0
         routeHeaderVO.setAppDocId(routeHeader.getAppDocId());
 144  0
         routeHeaderVO.setDateApproved(SQLUtils.convertTimestamp(routeHeader.getApprovedDate()));
 145  0
         routeHeaderVO.setDateCreated(SQLUtils.convertTimestamp(routeHeader.getCreateDate()));
 146  0
         routeHeaderVO.setDateFinalized(SQLUtils.convertTimestamp(routeHeader.getFinalizedDate()));
 147  0
         routeHeaderVO.setDateLastModified(SQLUtils.convertTimestamp(routeHeader.getStatusModDate()));
 148  0
         routeHeaderVO.setAppDocStatus(routeHeader.getAppDocStatus());
 149  0
         routeHeaderVO.setAppDocStatusDate(SQLUtils.convertTimestamp(routeHeader.getAppDocStatusDate()));
 150  
         
 151  
         /**
 152  
          * This is the original code which set everything up for lazy loading of document content
 153  
          */
 154  
         // by default, a non-initialized document content object will be sent so that it can be fetched lazily
 155  
         // DocumentContentVO documentContentVO = new DocumentContentVO();
 156  
         // documentContentVO.setRouteHeaderId(routeHeader.getRouteHeaderId());
 157  
         // routeHeaderVO.setDocumentContent(documentContentVO);
 158  
         /**
 159  
          * Since we removed the lazy loading in the 2.3 release, this is the code which bypasses lazy loading
 160  
          */
 161  
         // routeHeaderVO.setDocumentContent(convertDocumentContent(routeHeader.getDocContent(),
 162  
         // routeHeader.getRouteHeaderId()));
 163  0
         routeHeaderVO.setDocRouteLevel(routeHeader.getDocRouteLevel());
 164  0
         routeHeaderVO.setCurrentRouteNodeNames(routeHeader.getCurrentRouteLevelName());
 165  
 
 166  
         /*
 167  
          * Collection activeNodes =
 168  
          * SpringServiceLocator.getRouteNodeService().getActiveNodeInstances(routeHeaderVO.getRouteHeaderId());
 169  
          * routeHeaderVO.setNodeNames(new String[activeNodes.size()]); int index = 0; for (Iterator iterator =
 170  
          * activeNodes.iterator(); iterator.hasNext();) { RouteNodeInstance nodeInstance = (RouteNodeInstance)
 171  
          * iterator.next(); routeHeaderVO.getNodeNames()[index++] = nodeInstance.getRouteNode().getRouteNodeName(); }
 172  
          */
 173  
 
 174  0
         routeHeaderVO.setDocRouteStatus(routeHeader.getDocRouteStatus());
 175  0
         routeHeaderVO.setDocTitle(routeHeader.getDocTitle());
 176  0
         if (routeHeader.getDocumentType() != null) {
 177  0
             routeHeaderVO.setDocTypeName(routeHeader.getDocumentType().getName());
 178  0
             routeHeaderVO.setDocumentUrl(routeHeader.getDocumentType().getDocHandlerUrl());
 179  0
             routeHeaderVO.setDocTypeId(routeHeader.getDocumentTypeId());
 180  
         }
 181  0
         routeHeaderVO.setDocVersion(routeHeader.getDocVersion());
 182  0
         routeHeaderVO.setInitiatorPrincipalId(routeHeader.getInitiatorWorkflowId());
 183  0
         routeHeaderVO.setRoutedByPrincipalId(routeHeader.getRoutedByUserWorkflowId());
 184  
 
 185  
         /* populate the routeHeaderVO with the document variables */
 186  
         // FIXME: we assume there is only one for now
 187  0
         Branch routeNodeInstanceBranch = routeHeader.getRootBranch();
 188  
         // Ok, we are using the "branch state" as the arbitrary convenient repository for flow/process/edoc variables
 189  
         // so we need to stuff them into the VO
 190  0
         if (routeNodeInstanceBranch != null) {
 191  0
             List listOfBranchStates = routeNodeInstanceBranch.getBranchState();
 192  0
             Iterator it = listOfBranchStates.iterator();
 193  0
             while (it.hasNext()) {
 194  0
                 BranchState bs = (BranchState) it.next();
 195  0
                 if (bs.getKey() != null && bs.getKey().startsWith(BranchState.VARIABLE_PREFIX)) {
 196  0
                     LOG.debug("Setting branch state variable on vo: " + bs.getKey() + "=" + bs.getValue());
 197  0
                     routeHeaderVO.setVariable(bs.getKey().substring(BranchState.VARIABLE_PREFIX.length()), bs.getValue());
 198  
                 }
 199  0
             }
 200  
         }
 201  0
     }
 202  
 
 203  
     public static DocumentRouteHeaderValue convertRouteHeaderVO(RouteHeaderDTO routeHeaderVO) throws WorkflowException {
 204  0
         DocumentRouteHeaderValue routeHeader = new DocumentRouteHeaderValue();
 205  0
         routeHeader.setAppDocId(routeHeaderVO.getAppDocId());
 206  0
         routeHeader.setApprovedDate(SQLUtils.convertCalendar(routeHeaderVO.getDateApproved()));
 207  0
         routeHeader.setCreateDate(SQLUtils.convertCalendar(routeHeaderVO.getDateCreated()));
 208  0
         if (StringUtils.isEmpty(routeHeader.getDocContent())) {
 209  0
             routeHeader.setDocContent(KEWConstants.DEFAULT_DOCUMENT_CONTENT);
 210  
         }
 211  0
         routeHeader.setDocRouteLevel(routeHeaderVO.getDocRouteLevel());
 212  0
         routeHeader.setDocRouteStatus(routeHeaderVO.getDocRouteStatus());
 213  0
         routeHeader.setDocTitle(routeHeaderVO.getDocTitle());
 214  0
         if (routeHeaderVO.getDocTypeName() != null) {
 215  0
             DocumentType documentType = KEWServiceLocator.getDocumentTypeService().findByName(routeHeaderVO.getDocTypeName());
 216  0
             if (documentType == null) {
 217  0
                 throw new DocumentTypeNotFoundException("Could not locate the given document type name: " + routeHeaderVO.getDocTypeName());
 218  
             }
 219  0
             routeHeader.setDocumentTypeId(documentType.getDocumentTypeId());
 220  
         }
 221  0
         routeHeader.setDocVersion(routeHeaderVO.getDocVersion());
 222  0
         routeHeader.setFinalizedDate(SQLUtils.convertCalendar(routeHeaderVO.getDateFinalized()));
 223  0
         routeHeader.setInitiatorWorkflowId(routeHeaderVO.getInitiatorPrincipalId());
 224  0
         routeHeader.setRoutedByUserWorkflowId(routeHeaderVO.getRoutedByPrincipalId());
 225  0
         routeHeader.setRouteHeaderId(routeHeaderVO.getRouteHeaderId());
 226  0
         routeHeader.setStatusModDate(SQLUtils.convertCalendar(routeHeaderVO.getDateLastModified()));
 227  0
         routeHeader.setAppDocStatus(routeHeaderVO.getAppDocStatus());
 228  0
         routeHeader.setAppDocStatusDate(SQLUtils.convertCalendar(routeHeaderVO.getAppDocStatusDate()));
 229  
 
 230  
         
 231  
         // Convert the variables
 232  0
         List<KeyValue> variables = routeHeaderVO.getVariables();
 233  0
         if( variables != null && !variables.isEmpty()){
 234  0
                 for(KeyValue kvp : variables){
 235  0
                         routeHeader.setVariable(kvp.getKey(), kvp.getValue());
 236  
                 }
 237  
         }
 238  
         
 239  0
         return routeHeader;
 240  
     }
 241  
 
 242  
     public static ActionItemDTO convertActionItem(ActionItem actionItem) {
 243  0
         ActionItemDTO actionItemVO = new ActionItemDTO();
 244  0
         actionItemVO.setActionItemId(actionItem.getActionItemId());
 245  0
         actionItemVO.setActionItemIndex(actionItem.getActionItemIndex());
 246  0
         actionItemVO.setActionRequestCd(actionItem.getActionRequestCd());
 247  0
         actionItemVO.setActionRequestId(actionItem.getActionRequestId());
 248  0
         actionItemVO.setActionToTake(actionItem.getActionToTake());
 249  0
         actionItemVO.setDateAssigned(actionItem.getDateAssigned());
 250  0
         actionItemVO.setDateAssignedString(actionItem.getDateAssignedString());
 251  0
         actionItemVO.setDelegationType(actionItem.getDelegationType());
 252  0
         actionItemVO.setDelegatorPrincipalId(actionItem.getDelegatorWorkflowId());
 253  0
         actionItemVO.setDelegatorGroupId(actionItem.getDelegatorGroupId());
 254  0
         actionItemVO.setDocHandlerURL(actionItem.getDocHandlerURL());
 255  0
         actionItemVO.setDocLabel(actionItem.getDocLabel());
 256  0
         actionItemVO.setDocName(actionItem.getDocName());
 257  0
         actionItemVO.setDocTitle(actionItem.getDocTitle());
 258  0
         actionItemVO.setResponsibilityId(actionItem.getResponsibilityId());
 259  0
         actionItemVO.setRoleName(actionItem.getRoleName());
 260  0
         actionItemVO.setRouteHeaderId(actionItem.getRouteHeaderId());
 261  0
         actionItemVO.setPrincipalId(actionItem.getPrincipalId());
 262  0
         actionItemVO.setGroupId(actionItem.getGroupId());
 263  0
         return actionItemVO;
 264  
     }
 265  
 
 266  
     /**
 267  
      * Converts the given DocumentContentVO to a document content string. This method considers existing content on the
 268  
      * document and updates approriately. The string returned will be the new document content for the document. If null is
 269  
      * returned, then the document content is unchanged.
 270  
      */
 271  
     public static String buildUpdatedDocumentContent(DocumentContentDTO documentContentVO) throws WorkflowException {
 272  0
         DocumentType documentType = null;
 273  0
         String documentContent = KEWConstants.DEFAULT_DOCUMENT_CONTENT;
 274  
         try {
 275  
             // parse the existing content on the document
 276  0
             String existingDocContent = KEWConstants.DEFAULT_DOCUMENT_CONTENT;
 277  0
             if (documentContentVO.getRouteHeaderId() != null) {
 278  0
                 DocumentRouteHeaderValue document = KEWServiceLocator.getRouteHeaderService().getRouteHeader(documentContentVO.getRouteHeaderId());
 279  0
                 documentType = document.getDocumentType();
 280  0
                 existingDocContent = document.getDocContent();
 281  
             }
 282  0
             StandardDocumentContent standardDocContent = new StandardDocumentContent(existingDocContent);
 283  0
             DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
 284  0
             Document document = builder.newDocument();
 285  0
             Element root = document.createElement(KEWConstants.DOCUMENT_CONTENT_ELEMENT);
 286  0
             document.appendChild(root);
 287  0
             Element applicationContentElement = standardDocContent.getApplicationContent();
 288  0
             if (documentContentVO.getApplicationContent() != null) {
 289  
                 // application content has changed
 290  0
                 if (!org.apache.commons.lang.StringUtils.isEmpty(documentContentVO.getApplicationContent())) {
 291  0
                     applicationContentElement = document.createElement(KEWConstants.APPLICATION_CONTENT_ELEMENT);
 292  0
                     XmlHelper.appendXml(applicationContentElement, documentContentVO.getApplicationContent());
 293  
                 } else {
 294  
                     // they've cleared the application content
 295  0
                     applicationContentElement = null;
 296  
                 }
 297  
             }
 298  0
             Element attributeContentElement = createDocumentContentSection(document, standardDocContent.getAttributeContent(), documentContentVO.getAttributeDefinitions(), documentContentVO.getAttributeContent(), KEWConstants.ATTRIBUTE_CONTENT_ELEMENT, documentType);
 299  0
             Element searchableContentElement = createDocumentContentSection(document, standardDocContent.getSearchableContent(), documentContentVO.getSearchableDefinitions(), documentContentVO.getSearchableContent(), KEWConstants.SEARCHABLE_CONTENT_ELEMENT, documentType);
 300  0
             if (applicationContentElement != null) {
 301  0
                 root.appendChild(applicationContentElement);
 302  
             }
 303  0
             if (attributeContentElement != null) {
 304  0
                 root.appendChild(attributeContentElement);
 305  
             }
 306  0
             if (searchableContentElement != null) {
 307  0
                 root.appendChild(searchableContentElement);
 308  
             }
 309  0
             documentContent = XmlJotter.jotNode(document);
 310  0
         } catch (Exception e) {
 311  0
             handleException("Error parsing document content.", e);
 312  0
         }
 313  0
         return documentContent;
 314  
     }
 315  
 
 316  
     private static Element createDocumentContentSection(Document document, Element existingAttributeElement, WorkflowAttributeDefinitionDTO[] definitions, String content, String elementName, DocumentType documentType) throws Exception {
 317  0
         Element contentSectionElement = existingAttributeElement;
 318  
         // if they've updated the content, we're going to re-build the content section element from scratch
 319  0
         if (content != null) {
 320  0
             if (!org.apache.commons.lang.StringUtils.isEmpty(content)) {
 321  0
                 contentSectionElement = document.createElement(elementName);
 322  
                 // if they didn't merely clear the content, let's build the content section element by combining the children
 323  
                 // of the incoming XML content
 324  0
                 Element incomingAttributeElement = XmlHelper.readXml(content).getDocumentElement();
 325  0
                 NodeList children = incomingAttributeElement.getChildNodes();
 326  0
                 for (int index = 0; index < children.getLength(); index++) {
 327  0
                     contentSectionElement.appendChild(document.importNode(children.item(index), true));
 328  
                 }
 329  0
             } else {
 330  0
                 contentSectionElement = null;
 331  
             }
 332  
         }
 333  
         // if they have new definitions we're going to append those to the existing content section
 334  0
         if (!ArrayUtils.isEmpty(definitions)) {
 335  0
             String errorMessage = "";
 336  0
             boolean inError = false;
 337  0
             if (contentSectionElement == null) {
 338  0
                 contentSectionElement = document.createElement(elementName);
 339  
             }
 340  0
             for (WorkflowAttributeDefinitionDTO definitionVO : definitions) {
 341  0
                 AttributeDefinition definition = convertWorkflowAttributeDefinitionVO(definitionVO, documentType);
 342  0
                 RuleAttribute ruleAttribute = definition.getRuleAttribute();
 343  0
                 Object attribute = GlobalResourceLoader.getResourceLoader().getObject(definition.getObjectDefinition());
 344  0
                 boolean propertiesAsMap = false;
 345  0
                 if (KEWConstants.RULE_XML_ATTRIBUTE_TYPE.equals(ruleAttribute.getType())) {
 346  0
                     ((GenericXMLRuleAttribute) attribute).setRuleAttribute(ruleAttribute);
 347  0
                     propertiesAsMap = true;
 348  0
                 } else if (KEWConstants.SEARCHABLE_XML_ATTRIBUTE_TYPE.equals(ruleAttribute.getType())) {
 349  0
                     ((GenericXMLSearchableAttribute) attribute).setRuleAttribute(ruleAttribute);
 350  0
                     propertiesAsMap = true;
 351  
                 }
 352  0
                 if (propertiesAsMap) {
 353  0
                     for (PropertyDefinitionDTO propertyDefinitionVO : definitionVO.getProperties()) {
 354  0
                         if (attribute instanceof GenericXMLRuleAttribute) {
 355  0
                             ((GenericXMLRuleAttribute) attribute).getParamMap().put(propertyDefinitionVO.getName(), propertyDefinitionVO.getValue());
 356  0
                         } else if (attribute instanceof GenericXMLSearchableAttribute) {
 357  0
                             ((GenericXMLSearchableAttribute) attribute).getParamMap().put(propertyDefinitionVO.getName(), propertyDefinitionVO.getValue());
 358  
                         }
 359  
                     }
 360  
                 }
 361  
 
 362  
                 // validate inputs from client application if the attribute is capable
 363  0
                 if (attribute instanceof WorkflowAttributeXmlValidator) {
 364  0
                     List<WorkflowAttributeValidationError> errors = ((WorkflowAttributeXmlValidator) attribute).validateClientRoutingData();
 365  0
                     if (!errors.isEmpty()) {
 366  0
                         inError = true;
 367  0
                         errorMessage += "Error validating attribute " + definitionVO.getAttributeName() + " ";
 368  0
                         for (WorkflowAttributeValidationError error : errors) {
 369  0
                             errorMessage += error.getMessage() + " ";
 370  
                         }
 371  
                     }
 372  
                 }
 373  
                 // dont add to xml if attribute is in error
 374  0
                 if (!inError) {
 375  0
                     if (attribute instanceof WorkflowAttribute) {
 376  0
                         String attributeDocContent = ((WorkflowAttribute) attribute).getDocContent();
 377  0
                         if (!StringUtils.isEmpty(attributeDocContent)) {
 378  0
                             XmlHelper.appendXml(contentSectionElement, attributeDocContent);
 379  
                         }
 380  0
                     } else if (attribute instanceof SearchableAttribute) {
 381  0
                         String searcheAttributeContent =
 382  
                                 ((SearchableAttribute) attribute).getSearchContent(DocSearchUtils.getDocumentSearchContext("", documentType.getName(), ""));
 383  0
                         if (!StringUtils.isEmpty(searcheAttributeContent)) {
 384  0
                             XmlHelper.appendXml(contentSectionElement, searcheAttributeContent);
 385  
                         }
 386  
                     }
 387  
                 }
 388  
             }
 389  0
             if (inError) {
 390  0
                 throw new WorkflowRuntimeException(errorMessage);
 391  
             }
 392  
 
 393  
         }
 394  0
         if (contentSectionElement != null) {
 395  
             // always be sure and import the element into the new document, if it originated from the existing doc content
 396  
             // and
 397  
             // appended to it, it will need to be imported
 398  0
             contentSectionElement = (Element) document.importNode(contentSectionElement, true);
 399  
         }
 400  0
         return contentSectionElement;
 401  
     }
 402  
 
 403  
     public static DocumentContentDTO convertDocumentContent(String documentContentValue, Long documentId) throws WorkflowException {
 404  0
         if (documentContentValue == null) {
 405  0
             return null;
 406  
         }
 407  0
         DocumentContentDTO documentContentVO = new DocumentContentDTO();
 408  
         // initialize the content fields
 409  0
         documentContentVO.setApplicationContent("");
 410  0
         documentContentVO.setAttributeContent("");
 411  0
         documentContentVO.setSearchableContent("");
 412  0
         documentContentVO.setRouteHeaderId(documentId);
 413  
         try {
 414  0
             DocumentContent documentContent = new StandardDocumentContent(documentContentValue);
 415  0
             if (documentContent.getApplicationContent() != null) {
 416  0
                 documentContentVO.setApplicationContent(XmlJotter.jotNode(documentContent.getApplicationContent()));
 417  
             }
 418  0
             if (documentContent.getAttributeContent() != null) {
 419  0
                 documentContentVO.setAttributeContent(XmlJotter.jotNode(documentContent.getAttributeContent()));
 420  
             }
 421  0
             if (documentContent.getSearchableContent() != null) {
 422  0
                 documentContentVO.setSearchableContent(XmlJotter.jotNode(documentContent.getSearchableContent()));
 423  
             }
 424  0
         } catch (Exception e) {
 425  0
             handleException("Error parsing document content.", e);
 426  0
         }
 427  0
         return documentContentVO;
 428  
     }
 429  
 
 430  
     public static DocumentTypeDTO convertDocumentType(DocumentType docType) {
 431  0
         if (docType == null) {
 432  0
             return null;
 433  
         }
 434  0
         DocumentTypeDTO docTypeVO = new DocumentTypeDTO();
 435  0
         docTypeVO.setDocTypeParentId(docType.getDocTypeParentId());
 436  0
         if (docType.getParentDocType() != null) {
 437  0
             docTypeVO.setDocTypeParentName(docType.getParentDocType().getName());
 438  
         }
 439  
 
 440  0
         docTypeVO.setDocTypeDescription(docType.getDescription());
 441  0
         docTypeVO.setDocTypeHandlerUrl(docType.getDocHandlerUrl());
 442  0
         docTypeVO.setHelpDefinitionUrl(docType.getHelpDefinitionUrl());
 443  0
         docTypeVO.setDocSearchHelpUrl(docType.getDocSearchHelpUrl());
 444  0
         docTypeVO.setDocTypeId(docType.getDocumentTypeId());
 445  0
         docTypeVO.setDocTypeLabel(docType.getLabel());
 446  0
         docTypeVO.setName(docType.getName());
 447  0
         docTypeVO.setDocTypeVersion(docType.getVersion());
 448  0
         Boolean currentInd = docType.getCurrentInd();
 449  0
         if (currentInd == null) {
 450  0
             docTypeVO.setDocTypeCurrentInd(null);
 451  0
         } else if (currentInd.booleanValue()) {
 452  0
             docTypeVO.setDocTypeCurrentInd(KEWConstants.ACTIVE_CD);
 453  
         } else {
 454  0
             docTypeVO.setDocTypeCurrentInd(KEWConstants.INACTIVE_CD);
 455  
         }
 456  0
         docTypeVO.setPostProcessorName(docType.getPostProcessorName());
 457  0
         docTypeVO.setDocTypeJndiFactoryClass(null);
 458  0
         docTypeVO.setDocTypeActiveInd(docType.getActive().booleanValue());
 459  0
         if (docType.getParentDocType() != null) {
 460  0
             docTypeVO.setDocTypeActiveInherited(true);
 461  
         } else {
 462  0
             docTypeVO.setDocTypeActiveInherited(false);
 463  
         }     
 464  0
         Group blanketGroup = docType.getBlanketApproveWorkgroup();
 465  0
         if (blanketGroup != null) {
 466  0
             docTypeVO.setBlanketApproveGroupId(blanketGroup.getGroupId());
 467  
         }
 468  0
         docTypeVO.setBlanketApprovePolicy(docType.getBlanketApprovePolicy());
 469  0
         docTypeVO.setRoutePath(convertRoutePath(docType));
 470  0
         return docTypeVO;
 471  
     }
 472  
 
 473  
     public static RoutePathDTO convertRoutePath(DocumentType documentType) {
 474  0
         RoutePathDTO routePath = new RoutePathDTO();
 475  0
         ProcessDTO[] processes = new ProcessDTO[documentType.getProcesses().size()];
 476  0
         int index = 0;
 477  0
         for (Iterator iterator = documentType.getProcesses().iterator(); iterator.hasNext();) {
 478  0
             Process process = (Process) iterator.next();
 479  0
             processes[index++] = convertProcess(process);
 480  0
         }
 481  0
         routePath.setProcesses(processes);
 482  0
         return routePath;
 483  
     }
 484  
 
 485  
     public static ActionRequestDTO convertActionRequest(ActionRequestValue actionRequest) {
 486  0
             return convertActionRequest(actionRequest, true);
 487  
     }
 488  
 
 489  
     protected static ActionRequestDTO convertActionRequest(ActionRequestValue actionRequest, boolean includeActionTaken) {
 490  0
         ActionRequestDTO actionRequestVO = new ActionRequestDTO();
 491  0
         actionRequestVO.setActionRequested(actionRequest.getActionRequested());
 492  0
         actionRequestVO.setActionRequestId(actionRequest.getActionRequestId());
 493  
 
 494  0
         if (includeActionTaken && (actionRequest.getActionTaken() != null)) {
 495  0
             actionRequestVO.setActionTakenId(actionRequest.getActionTakenId());
 496  0
             actionRequestVO.setActionTaken(convertActionTaken(actionRequest.getActionTaken()));
 497  
         }
 498  
 
 499  0
         actionRequestVO.setAnnotation(actionRequest.getAnnotation());
 500  0
         actionRequestVO.setDateCreated(SQLUtils.convertTimestamp(actionRequest.getCreateDate()));
 501  0
         actionRequestVO.setDocVersion(actionRequest.getDocVersion());
 502  0
         actionRequestVO.setPrincipalId(actionRequest.getPrincipalId());
 503  0
         actionRequestVO.setForceAction(actionRequest.getForceAction());
 504  0
         actionRequestVO.setPriority(actionRequest.getPriority());
 505  0
         actionRequestVO.setRecipientTypeCd(actionRequest.getRecipientTypeCd());
 506  0
         actionRequestVO.setResponsibilityDesc(actionRequest.getResponsibilityDesc());
 507  0
         actionRequestVO.setResponsibilityId(actionRequest.getResponsibilityId());
 508  0
         actionRequestVO.setRouteHeaderId(actionRequest.getRouteHeaderId());
 509  0
         actionRequestVO.setRouteLevel(actionRequest.getRouteLevel());
 510  0
         actionRequestVO.setNodeName(actionRequest.getPotentialNodeName());
 511  0
         actionRequestVO.setNodeInstanceId((actionRequest.getNodeInstance() == null ? null : actionRequest.getNodeInstance().getRouteNodeInstanceId()));
 512  
         // TODO delyea - should below be using actionRequest.getRoleName()?
 513  0
         actionRequestVO.setRoleName(actionRequest.getQualifiedRoleName());
 514  0
         actionRequestVO.setQualifiedRoleName(actionRequest.getQualifiedRoleName());
 515  0
         actionRequestVO.setQualifiedRoleNameLabel(actionRequest.getQualifiedRoleNameLabel());
 516  0
         actionRequestVO.setStatus(actionRequest.getStatus());
 517  0
         actionRequestVO.setGroupId(actionRequest.getGroupId());
 518  0
         actionRequestVO.setDelegationType(actionRequest.getDelegationType());
 519  0
         actionRequestVO.setParentActionRequestId(actionRequest.getParentActionRequestId());
 520  0
         actionRequestVO.setRequestLabel(actionRequest.getRequestLabel());
 521  0
         ActionRequestDTO[] childRequestVOs = new ActionRequestDTO[actionRequest.getChildrenRequests().size()];
 522  0
         int index = 0;
 523  0
         for (ActionRequestValue childRequest : actionRequest.getChildrenRequests()) {
 524  0
             ActionRequestDTO childRequestVO = convertActionRequest(childRequest);
 525  0
             childRequestVOs[index++] = childRequestVO;
 526  0
         }
 527  0
         actionRequestVO.setChildrenRequests(childRequestVOs);
 528  0
         return actionRequestVO;
 529  
     }
 530  
 
 531  
     public static ActionTakenDTO convertActionTakenWithActionRequests(ActionTakenValue actionTaken) {
 532  0
             return convertActionTaken(actionTaken, true);
 533  
     }
 534  
 
 535  
     public static ActionTakenDTO convertActionTaken(ActionTakenValue actionTaken) {
 536  0
             return convertActionTaken(actionTaken, false);
 537  
     }
 538  
 
 539  
     protected static ActionTakenDTO convertActionTaken(ActionTakenValue actionTaken, boolean fetchActionRequests) {
 540  0
         if (actionTaken == null) {
 541  0
             return null;
 542  
         }
 543  0
         ActionTakenDTO actionTakenVO = new ActionTakenDTO();
 544  0
         actionTakenVO.setActionDate(SQLUtils.convertTimestamp(actionTaken.getActionDate()));
 545  0
         actionTakenVO.setActionTaken(actionTaken.getActionTaken());
 546  0
         actionTakenVO.setActionTakenId(actionTaken.getActionTakenId());
 547  0
         actionTakenVO.setAnnotation(actionTaken.getAnnotation());
 548  0
         actionTakenVO.setDocVersion(actionTaken.getDocVersion());
 549  0
         actionTakenVO.setRouteHeaderId(actionTaken.getRouteHeaderId());
 550  0
         actionTakenVO.setPrincipalId(actionTaken.getPrincipalId());
 551  0
         actionTakenVO.setDelegatorPrincpalId(actionTaken.getDelegatorPrincipalId());
 552  0
         actionTakenVO.setDelegatorGroupId(actionTaken.getDelegatorGroupId());
 553  0
         if (fetchActionRequests) {
 554  0
                 ActionRequestDTO[] actionRequests = new ActionRequestDTO[actionTaken.getActionRequests().size()];
 555  0
                 int index = 0;
 556  0
                 for (Object element : actionTaken.getActionRequests()) {
 557  0
                     ActionRequestValue actionRequest = (ActionRequestValue) element;
 558  0
                     actionRequests[index++] = convertActionRequest(actionRequest, false);
 559  0
                 }
 560  0
                 actionTakenVO.setActionRequests(actionRequests);
 561  
         }
 562  0
         return actionTakenVO;
 563  
     }
 564  
 
 565  
     public static ResponsiblePartyDTO convertResponsibleParty(ResponsibleParty responsibleParty) {
 566  0
         if (responsibleParty == null) {
 567  0
             return null;
 568  
         }
 569  0
         ResponsiblePartyDTO responsiblePartyVO = new ResponsiblePartyDTO();
 570  0
         responsiblePartyVO.setGroupId(responsibleParty.getGroupId());
 571  0
         responsiblePartyVO.setPrincipalId(responsibleParty.getPrincipalId());
 572  0
         responsiblePartyVO.setRoleName(responsibleParty.getRoleName());
 573  0
         return responsiblePartyVO;
 574  
     }
 575  
 
 576  
     public static ResponsibleParty convertResponsiblePartyVO(ResponsiblePartyDTO responsiblePartyVO) {
 577  0
         if (responsiblePartyVO == null) {
 578  0
             return null;
 579  
         }
 580  0
         ResponsibleParty responsibleParty = new ResponsibleParty();
 581  0
         responsibleParty.setGroupId(responsiblePartyVO.getGroupId());
 582  0
         responsibleParty.setPrincipalId(responsiblePartyVO.getPrincipalId());
 583  0
         responsibleParty.setRoleName(responsiblePartyVO.getRoleName());
 584  0
         return responsibleParty;
 585  
     }
 586  
 
 587  
     /**
 588  
      * refactor name to convertResponsiblePartyVO when ResponsibleParty object is gone
 589  
      *
 590  
      * @param responsiblePartyVO
 591  
      * @return
 592  
      */
 593  
     public static Recipient convertResponsiblePartyVOtoRecipient(ResponsiblePartyDTO responsiblePartyVO) {
 594  0
         if (responsiblePartyVO == null) {
 595  0
             return null;
 596  
         }
 597  0
         if (responsiblePartyVO.getRoleName() != null) {
 598  0
             return new RoleRecipient(responsiblePartyVO.getRoleName());
 599  
         }
 600  0
         String groupId = responsiblePartyVO.getGroupId();
 601  0
         if (groupId != null) {
 602  0
                 Group group = KIMServiceLocator.getIdentityManagementService().getGroup(groupId);
 603  0
                 if (group == null) {
 604  0
                         throw new RiceRuntimeException("Failed to locate group with ID: " + groupId);
 605  
                 }
 606  0
             return new KimGroupRecipient(group);
 607  
         }
 608  0
         String principalId = responsiblePartyVO.getPrincipalId();
 609  0
         if (principalId != null) {
 610  0
             return new KimPrincipalRecipient(principalId);
 611  
         }
 612  0
         throw new WorkflowRuntimeException("ResponsibleParty of unknown type");
 613  
     }
 614  
 
 615  
     /**
 616  
      * Interface for a simple service providing RouteNodeInstanceS based on their IDs 
 617  
      */
 618  0
     public static interface RouteNodeInstanceLoader {
 619  
             RouteNodeInstance load(Long routeNodeInstanceID);
 620  
     }
 621  
     
 622  
     /**
 623  
      * Converts an ActionRequestVO to an ActionRequest. The ActionRequestDTO passed in must be the root action request in the
 624  
      * graph, otherwise an IllegalArgumentException is thrown. This is to avoid potentially sticky issues with circular
 625  
      * references in the conversion. NOTE: This method's primary purpose is to convert ActionRequestVOs returned from a
 626  
      * RouteModule. Incidentally, the DTO's returned from the route module will be lacking some information (like the node
 627  
      * instance) so no attempts are made to convert this data since further initialization is handled by a higher level
 628  
      * component (namely ActionRequestService.initializeActionRequestGraph).
 629  
      */
 630  
     public static ActionRequestValue convertActionRequestDTO(ActionRequestDTO actionRequestDTO) {
 631  0
             return convertActionRequestDTO(actionRequestDTO, null);
 632  
     }
 633  
     
 634  
     /**
 635  
      * Converts an ActionRequestVO to an ActionRequest. The ActionRequestDTO passed in must be the root action request in the
 636  
      * graph, otherwise an IllegalArgumentException is thrown. This is to avoid potentially sticky issues with circular
 637  
      * references in the conversion. 
 638  
      * @param routeNodeInstanceLoader a service that will provide routeNodeInstanceS based on their IDs.
 639  
      */
 640  
     public static ActionRequestValue convertActionRequestDTO(ActionRequestDTO actionRequestDTO, 
 641  
                     RouteNodeInstanceLoader routeNodeInstanceLoader) {
 642  
             
 643  0
         if (actionRequestDTO == null) {
 644  0
             return null;
 645  
         }
 646  0
         if (actionRequestDTO.getParentActionRequestId() != null) {
 647  0
             throw new IllegalArgumentException("Cannot convert a non-root ActionRequestVO");
 648  
         }
 649  0
         ActionRequestValue actionRequest = new ActionRequestFactory().createBlankActionRequest();
 650  0
         populateActionRequest(actionRequest, actionRequestDTO, routeNodeInstanceLoader);
 651  0
         if (actionRequestDTO.getChildrenRequests() != null) {
 652  0
             for (int i = 0; i < actionRequestDTO.getChildrenRequests().length; i++) {
 653  0
                 ActionRequestDTO childVO = actionRequestDTO.getChildrenRequests()[i];
 654  0
                 actionRequest.getChildrenRequests().add(convertActionRequestVO(childVO, actionRequest, routeNodeInstanceLoader));
 655  
             }
 656  
         }
 657  0
         return actionRequest;
 658  
     }
 659  
 
 660  
     // TODO: should this be private?  If so, rename to convertActionRequestDTO for consistency.
 661  
     protected static ActionRequestValue convertActionRequestVO(ActionRequestDTO actionRequestDTO, ActionRequestValue parentActionRequest,
 662  
                     RouteNodeInstanceLoader routeNodeInstanceLoader) {
 663  0
         if (actionRequestDTO == null) {
 664  0
             return null;
 665  
         }
 666  0
         ActionRequestValue actionRequest = new ActionRequestFactory().createBlankActionRequest();
 667  0
         populateActionRequest(actionRequest, actionRequestDTO, routeNodeInstanceLoader);
 668  0
         actionRequest.setParentActionRequest(parentActionRequest);
 669  0
         actionRequest.setParentActionRequestId(parentActionRequest.getActionRequestId());
 670  0
         if (actionRequestDTO.getChildrenRequests() != null) {
 671  0
             for (int i = 0; i < actionRequestDTO.getChildrenRequests().length; i++) {
 672  0
                 ActionRequestDTO childVO = actionRequestDTO.getChildrenRequests()[i];
 673  0
                 actionRequest.getChildrenRequests().add(convertActionRequestVO(childVO, actionRequest, routeNodeInstanceLoader));
 674  
             }
 675  
         }
 676  0
         return actionRequest;
 677  
     }
 678  
 
 679  
     /**
 680  
      * This method converts everything except for the parent and child requests
 681  
      */
 682  
     private static void populateActionRequest(ActionRequestValue actionRequest, ActionRequestDTO actionRequestDTO, 
 683  
                     RouteNodeInstanceLoader routeNodeInstanceLoader) {
 684  
 
 685  0
         actionRequest.setActionRequested(actionRequestDTO.getActionRequested());
 686  0
         actionRequest.setActionRequestId(actionRequestDTO.getActionRequestId());
 687  0
         actionRequest.setActionTakenId(actionRequestDTO.getActionTakenId());
 688  0
         actionRequest.setAnnotation(actionRequestDTO.getAnnotation());
 689  0
         actionRequest.setApprovePolicy(actionRequestDTO.getApprovePolicy());
 690  0
         actionRequest.setCreateDate(new Timestamp(new Date().getTime()));
 691  0
         actionRequest.setCurrentIndicator(actionRequestDTO.getCurrentIndicator());
 692  0
         actionRequest.setDelegationType(actionRequestDTO.getDelegationType());
 693  0
         actionRequest.setDocVersion(actionRequestDTO.getDocVersion());
 694  0
         actionRequest.setForceAction(actionRequestDTO.getForceAction());
 695  0
         actionRequest.setPriority(actionRequestDTO.getPriority());
 696  0
         actionRequest.setQualifiedRoleName(actionRequestDTO.getQualifiedRoleName());
 697  0
         actionRequest.setQualifiedRoleNameLabel(actionRequestDTO.getQualifiedRoleNameLabel());
 698  0
         actionRequest.setRecipientTypeCd(actionRequestDTO.getRecipientTypeCd());
 699  0
         actionRequest.setResponsibilityDesc(actionRequestDTO.getResponsibilityDesc());
 700  0
         actionRequest.setResponsibilityId(actionRequestDTO.getResponsibilityId());
 701  0
         actionRequest.setRoleName(actionRequestDTO.getRoleName());
 702  0
         Long routeHeaderId = actionRequestDTO.getRouteHeaderId();
 703  0
         if (routeHeaderId != null) {
 704  0
             actionRequest.setRouteHeaderId(routeHeaderId);
 705  
             //actionRequest.setRouteHeader(KEWServiceLocator.getRouteHeaderService().getRouteHeader(routeHeaderId));
 706  
         }
 707  0
         actionRequest.setRouteLevel(actionRequestDTO.getRouteLevel());
 708  
 
 709  0
         actionRequest.setStatus(actionRequestDTO.getStatus());
 710  0
         actionRequest.setPrincipalId(actionRequestDTO.getPrincipalId());
 711  0
         actionRequest.setGroupId(actionRequestDTO.getGroupId());
 712  
         
 713  0
         if (routeNodeInstanceLoader != null && actionRequestDTO.getNodeInstanceId() != null) {
 714  0
                 actionRequest.setNodeInstance(routeNodeInstanceLoader.load(actionRequestDTO.getNodeInstanceId()));
 715  
         }
 716  0
     }
 717  
 
 718  
     public static ActionTakenValue convertActionTakenVO(ActionTakenDTO actionTakenVO) {
 719  0
         if (actionTakenVO == null) {
 720  0
             return null;
 721  
         }
 722  0
         ActionTakenValue actionTaken = new ActionTakenValue();
 723  0
         actionTaken.setActionDate(new Timestamp(actionTakenVO.getActionDate().getTimeInMillis()));
 724  0
         actionTaken.setActionTaken(actionTakenVO.getActionTaken());
 725  0
         actionTaken.setActionTakenId(actionTakenVO.getActionTakenId());
 726  0
         actionTaken.setAnnotation(actionTakenVO.getAnnotation());
 727  0
         actionTaken.setCurrentIndicator(Boolean.TRUE);
 728  0
         actionTaken.setPrincipalId(actionTakenVO.getPrincipalId());
 729  0
         actionTaken.setDelegatorPrincipalId(actionTakenVO.getDelegatorPrincpalId());
 730  0
         actionTaken.setDelegatorGroupId(actionTakenVO.getDelegatorGroupId());
 731  0
         actionTaken.setDocVersion(actionTakenVO.getDocVersion());
 732  0
         KEWServiceLocator.getRouteHeaderService().getRouteHeader(actionTakenVO.getRouteHeaderId());
 733  
         //actionTaken.setRouteHeader(routeHeader);
 734  0
         actionTaken.setRouteHeaderId(actionTaken.getRouteHeaderId());
 735  0
         return actionTaken;
 736  
     }
 737  
 
 738  
     public static DocumentRouteStatusChangeDTO convertDocumentRouteStatusChange(DocumentRouteStatusChange statusChange) {
 739  0
         if (statusChange == null) {
 740  0
             return null;
 741  
         }
 742  0
         DocumentRouteStatusChangeDTO statusChangeVO = new DocumentRouteStatusChangeDTO();
 743  0
         statusChangeVO.setRouteHeaderId(statusChange.getRouteHeaderId());
 744  0
         statusChangeVO.setAppDocId(statusChange.getAppDocId());
 745  0
         statusChangeVO.setOldRouteStatus(statusChange.getOldRouteStatus());
 746  0
         statusChangeVO.setNewRouteStatus(statusChange.getNewRouteStatus());
 747  0
         return statusChangeVO;
 748  
     }
 749  
 
 750  
     public static DocumentRouteLevelChangeDTO convertDocumentRouteLevelChange(DocumentRouteLevelChange routeLevelChange) {
 751  0
         if (routeLevelChange == null) {
 752  0
             return null;
 753  
         }
 754  0
         DocumentRouteLevelChangeDTO routeLevelChangeVO = new DocumentRouteLevelChangeDTO();
 755  0
         routeLevelChangeVO.setRouteHeaderId(routeLevelChange.getRouteHeaderId());
 756  0
         routeLevelChangeVO.setAppDocId(routeLevelChange.getAppDocId());
 757  0
         routeLevelChangeVO.setOldRouteLevel(routeLevelChange.getOldRouteLevel());
 758  0
         routeLevelChangeVO.setNewRouteLevel(routeLevelChange.getNewRouteLevel());
 759  0
         routeLevelChangeVO.setOldNodeName(routeLevelChange.getOldNodeName());
 760  0
         routeLevelChangeVO.setNewNodeName(routeLevelChange.getNewNodeName());
 761  0
         routeLevelChangeVO.setOldNodeInstanceId(routeLevelChange.getOldNodeInstanceId());
 762  0
         routeLevelChangeVO.setNewNodeInstanceId(routeLevelChange.getNewNodeInstanceId());
 763  0
         return routeLevelChangeVO;
 764  
     }
 765  
 
 766  
     public static DeleteEventDTO convertDeleteEvent(DeleteEvent deleteEvent) {
 767  0
         if (deleteEvent == null) {
 768  0
             return null;
 769  
         }
 770  0
         DeleteEventDTO deleteEventVO = new DeleteEventDTO();
 771  0
         deleteEventVO.setRouteHeaderId(deleteEvent.getRouteHeaderId());
 772  0
         deleteEventVO.setAppDocId(deleteEvent.getAppDocId());
 773  0
         return deleteEventVO;
 774  
     }
 775  
 
 776  
     public static ActionTakenEventDTO convertActionTakenEvent(ActionTakenEvent actionTakenEvent) {
 777  0
         if (actionTakenEvent == null) {
 778  0
             return null;
 779  
         }
 780  0
         ActionTakenEventDTO actionTakenEventVO = new ActionTakenEventDTO();
 781  0
         actionTakenEventVO.setRouteHeaderId(actionTakenEvent.getRouteHeaderId());
 782  0
         actionTakenEventVO.setAppDocId(actionTakenEvent.getAppDocId());
 783  0
         actionTakenEventVO.setActionTaken(convertActionTaken(actionTakenEvent.getActionTaken()));
 784  0
         return actionTakenEventVO;
 785  
     }
 786  
 
 787  
     public static BeforeProcessEventDTO convertBeforeProcessEvent(BeforeProcessEvent event) {
 788  0
         if (event == null) {
 789  0
             return null;
 790  
         }
 791  0
         BeforeProcessEventDTO beforeProcessEvent = new BeforeProcessEventDTO();
 792  0
         beforeProcessEvent.setRouteHeaderId(event.getRouteHeaderId());
 793  0
         beforeProcessEvent.setAppDocId(event.getAppDocId());
 794  0
         beforeProcessEvent.setNodeInstanceId(event.getNodeInstanceId());
 795  0
         return beforeProcessEvent;
 796  
     }
 797  
 
 798  
     public static AfterProcessEventDTO convertAfterProcessEvent(AfterProcessEvent event) {
 799  0
         if (event == null) {
 800  0
             return null;
 801  
         }
 802  0
         AfterProcessEventDTO afterProcessEvent = new AfterProcessEventDTO();
 803  0
         afterProcessEvent.setRouteHeaderId(event.getRouteHeaderId());
 804  0
         afterProcessEvent.setAppDocId(event.getAppDocId());
 805  0
         afterProcessEvent.setNodeInstanceId(event.getNodeInstanceId());
 806  0
         afterProcessEvent.setSuccessfullyProcessed(event.isSuccessfullyProcessed());
 807  0
         return afterProcessEvent;
 808  
     }
 809  
 
 810  
     public static DocumentLockingEventDTO convertDocumentLockingEvent(DocumentLockingEvent event) {
 811  0
         if (event == null) {
 812  0
             return null;
 813  
         }
 814  0
         DocumentLockingEventDTO documentLockingEvent = new DocumentLockingEventDTO();
 815  0
         documentLockingEvent.setRouteHeaderId(event.getRouteHeaderId());
 816  0
         documentLockingEvent.setAppDocId(event.getAppDocId());
 817  0
         return documentLockingEvent;
 818  
     }
 819  
 
 820  
     
 821  
     public static AttributeDefinition convertWorkflowAttributeDefinitionVO(WorkflowAttributeDefinitionDTO definitionVO, org.kuali.rice.kew.doctype.bo.DocumentType documentType) {
 822  0
         if (definitionVO == null) {
 823  0
             return null;
 824  
         }
 825  
         // get the rule attribute so we can get's it's message antity and not blow up if it's remote
 826  0
         RuleAttribute ruleAttribute = KEWServiceLocator.getRuleAttributeService().findByClassName(definitionVO.getAttributeName());
 827  0
         if (ruleAttribute == null) {
 828  0
             ruleAttribute = KEWServiceLocator.getRuleAttributeService().findByName(definitionVO.getAttributeName());
 829  
         }
 830  0
         if (ruleAttribute == null) {
 831  0
             throw new WorkflowRuntimeException("Attribute " + definitionVO.getAttributeName() + " not found");
 832  
         }
 833  
 
 834  0
         ObjectDefinition definition = new ObjectDefinition(ruleAttribute.getClassName());
 835  0
         for (int index = 0; index < definitionVO.getConstructorParameters().length; index++) {
 836  0
             String parameter = definitionVO.getConstructorParameters()[index];
 837  0
             definition.addConstructorParameter(new DataDefinition(parameter, String.class));
 838  
         }
 839  0
         boolean propertiesAsMap = KEWConstants.RULE_XML_ATTRIBUTE_TYPE.equals(ruleAttribute.getType()) || KEWConstants.SEARCHABLE_XML_ATTRIBUTE_TYPE.equals(ruleAttribute.getType());
 840  0
         if (!propertiesAsMap) {
 841  0
             for (int index = 0; index < definitionVO.getProperties().length; index++) {
 842  0
                 PropertyDefinitionDTO propertyDefVO = definitionVO.getProperties()[index];
 843  0
                 definition.addProperty(new PropertyDefinition(propertyDefVO.getName(), new DataDefinition(propertyDefVO.getValue(), String.class)));
 844  
             }
 845  
         }
 846  
 
 847  
         // this is likely from an EDL validate call and ME may needed to be added to the AttDefinitionVO.
 848  0
         if (ruleAttribute.getServiceNamespace() != null) {
 849  0
             definition.setServiceNamespace(ruleAttribute.getServiceNamespace());
 850  
         } else {
 851  
             // get the me from the document type if it's been passed in - the document is having action taken on it.
 852  0
             if (documentType != null) {
 853  0
                 definition.setServiceNamespace(documentType.getServiceNamespace());
 854  
             }
 855  
         }
 856  
 
 857  0
         return new AttributeDefinition(ruleAttribute, definition);
 858  
     }
 859  
 
 860  
     public static DocumentDetailDTO convertDocumentDetail(DocumentRouteHeaderValue routeHeader) throws WorkflowException {
 861  0
         if (routeHeader == null) {
 862  0
             return null;
 863  
         }
 864  0
         DocumentDetailDTO detail = new DocumentDetailDTO();
 865  0
         populateRouteHeaderVO(detail, routeHeader);
 866  0
         Map nodeInstances = new HashMap();
 867  0
         List actionRequestVOs = new ArrayList();
 868  0
         List rootActionRequests = KEWServiceLocator.getActionRequestService().getRootRequests(routeHeader.getActionRequests());
 869  0
         for (Iterator iterator = rootActionRequests.iterator(); iterator.hasNext();) {
 870  0
             ActionRequestValue actionRequest = (ActionRequestValue) iterator.next();
 871  0
             actionRequestVOs.add(convertActionRequest(actionRequest));
 872  0
             RouteNodeInstance nodeInstance = actionRequest.getNodeInstance();
 873  0
             if (nodeInstance == null) {
 874  0
                 continue;
 875  
             }
 876  0
             if (nodeInstance.getRouteNodeInstanceId() == null) {
 877  0
                 throw new WorkflowException("Error creating document detail structure because of NULL node instance id.");
 878  
             }
 879  0
             nodeInstances.put(nodeInstance.getRouteNodeInstanceId(), nodeInstance);
 880  0
         }
 881  0
         detail.setActionRequests((ActionRequestDTO[]) actionRequestVOs.toArray(new ActionRequestDTO[0]));
 882  0
         List nodeInstanceVOs = new ArrayList();
 883  0
         for (Iterator iterator = nodeInstances.values().iterator(); iterator.hasNext();) {
 884  0
             RouteNodeInstance nodeInstance = (RouteNodeInstance) iterator.next();
 885  0
             nodeInstanceVOs.add(convertRouteNodeInstance(nodeInstance));
 886  0
         }
 887  0
         detail.setNodeInstances((RouteNodeInstanceDTO[]) nodeInstanceVOs.toArray(new RouteNodeInstanceDTO[0]));
 888  0
         List actionTakenVOs = new ArrayList();
 889  0
         for (Object element : routeHeader.getActionsTaken()) {
 890  0
             ActionTakenValue actionTaken = (ActionTakenValue) element;
 891  0
             actionTakenVOs.add(convertActionTaken(actionTaken));
 892  0
         }
 893  0
         detail.setActionsTaken((ActionTakenDTO[]) actionTakenVOs.toArray(new ActionTakenDTO[0]));
 894  0
         return detail;
 895  
     }
 896  
 
 897  
     public static RouteNodeInstanceDTO convertRouteNodeInstance(RouteNodeInstance nodeInstance) throws WorkflowException {
 898  0
         if (nodeInstance == null) {
 899  0
             return null;
 900  
         }
 901  0
         RouteNodeInstanceDTO nodeInstanceVO = new RouteNodeInstanceDTO();
 902  0
         nodeInstanceVO.setActive(nodeInstance.isActive());
 903  0
         nodeInstanceVO.setBranchId(nodeInstance.getBranch().getBranchId());
 904  0
         nodeInstanceVO.setComplete(nodeInstance.isComplete());
 905  0
         nodeInstanceVO.setDocumentId(nodeInstance.getDocumentId());
 906  0
         nodeInstanceVO.setInitial(nodeInstance.isInitial());
 907  0
         nodeInstanceVO.setName(nodeInstance.getName());
 908  0
         nodeInstanceVO.setProcessId(nodeInstance.getProcess() != null ? nodeInstance.getProcess().getRouteNodeInstanceId() : null);
 909  0
         nodeInstanceVO.setRouteNodeId(nodeInstance.getRouteNode().getRouteNodeId());
 910  0
         nodeInstanceVO.setRouteNodeInstanceId(nodeInstance.getRouteNodeInstanceId());
 911  0
         nodeInstanceVO.setState(convertStates(nodeInstance.getState()));
 912  
 
 913  0
         nodeInstanceVO.setNextNodes(new RouteNodeInstanceDTO[nodeInstance.getNextNodeInstances().size()]);
 914  0
         int i = 0;
 915  0
         for (Iterator iter = nodeInstance.getNextNodeInstances().iterator(); iter.hasNext(); i++) {
 916  0
             RouteNodeInstance nextNodeInstance = (RouteNodeInstance) iter.next();
 917  0
             nodeInstanceVO.getNextNodes()[i] = convertRouteNodeInstance(nextNodeInstance);
 918  
         }
 919  
 
 920  0
         return nodeInstanceVO;
 921  
     }
 922  
 
 923  
     public static StateDTO[] convertStates(Collection states) {
 924  0
         if (states == null) {
 925  0
             return null;
 926  
         }
 927  0
         StateDTO[] stateVOs = new StateDTO[states.size()];
 928  0
         int index = 0;
 929  0
         for (Iterator iterator = states.iterator(); iterator.hasNext();) {
 930  0
             State state = (State) iterator.next();
 931  0
             stateVOs[index++] = convertState(state);
 932  0
         }
 933  0
         return stateVOs;
 934  
     }
 935  
 
 936  
     public static StateDTO convertState(State nodeState) {
 937  0
         if (nodeState == null) {
 938  0
             return null;
 939  
         }
 940  0
         StateDTO stateVO = new StateDTO();
 941  0
         stateVO.setStateId(nodeState.getStateId());
 942  0
         stateVO.setKey(nodeState.getKey());
 943  0
         stateVO.setValue(nodeState.getValue());
 944  0
         return stateVO;
 945  
     }
 946  
 
 947  
     public static RouteNodeDTO convertRouteNode(RouteNode node) {
 948  0
         if (node == null) {
 949  0
             return null;
 950  
         }
 951  0
         RouteNodeDTO nodeVO = new RouteNodeDTO();
 952  0
         nodeVO.setActivationType(node.getActivationType());
 953  0
         nodeVO.setBranchName(node.getBranch() != null ? node.getBranch().getName() : null);
 954  0
         nodeVO.setDocumentTypeId(node.getDocumentTypeId());
 955  0
         nodeVO.setExceptionGroupId(node.getExceptionWorkgroupId());
 956  0
         nodeVO.setFinalApprovalInd(node.getFinalApprovalInd().booleanValue());
 957  0
         nodeVO.setMandatoryRouteInd(node.getMandatoryRouteInd().booleanValue());
 958  0
         nodeVO.setNodeType(node.getNodeType());
 959  0
         nodeVO.setRouteMethodCode(node.getRouteMethodCode());
 960  0
         nodeVO.setRouteMethodName(node.getRouteMethodName());
 961  0
         nodeVO.setRouteNodeId(node.getRouteNodeId());
 962  0
         nodeVO.setRouteNodeName(node.getRouteNodeName());
 963  0
         int index = 0;
 964  0
         Long[] previousNodeIds = new Long[node.getPreviousNodes().size()];
 965  0
         for (Object element : node.getPreviousNodes()) {
 966  0
             RouteNode prevNode = (RouteNode) element;
 967  0
             previousNodeIds[index++] = prevNode.getRouteNodeId();
 968  0
         }
 969  0
         nodeVO.setPreviousNodeIds(previousNodeIds);
 970  0
         index = 0;
 971  0
         Long[] nextNodeIds = new Long[node.getNextNodes().size()];
 972  0
         for (Object element : node.getNextNodes()) {
 973  0
             RouteNode nextNode = (RouteNode) element;
 974  0
             nextNodeIds[index++] = nextNode.getRouteNodeId();
 975  0
         }
 976  0
         nodeVO.setNextNodeIds(nextNodeIds);
 977  0
         return nodeVO;
 978  
     }
 979  
 
 980  
     public static ProcessDTO convertProcess(Process process) {
 981  0
         ProcessDTO processVO = new ProcessDTO();
 982  0
         processVO.setInitial(process.isInitial());
 983  0
         processVO.setInitialRouteNode(convertRouteNode(process.getInitialRouteNode()));
 984  0
         processVO.setName(process.getName());
 985  0
         processVO.setProcessId(process.getProcessId());
 986  0
         return processVO;
 987  
     }
 988  
 
 989  
     public static MovePoint convertMovePointVO(MovePointDTO movePointVO) {
 990  0
         MovePoint movePoint = new MovePoint();
 991  0
         movePoint.setStartNodeName(movePointVO.getStartNodeName());
 992  0
         movePoint.setStepsToMove(movePointVO.getStepsToMove());
 993  0
         return movePoint;
 994  
     }
 995  
 
 996  
     public static AdHocRevoke convertAdHocRevokeVO(AdHocRevokeDTO revokeVO) throws WorkflowException {
 997  0
         AdHocRevoke revoke = new AdHocRevoke();
 998  0
         revoke.setActionRequestId(revokeVO.getActionRequestId());
 999  0
         revoke.setNodeName(revokeVO.getNodeName());
 1000  0
         revoke.setPrincipalId(revokeVO.getPrincipalId());
 1001  0
         revoke.setGroupId(revokeVO.getGroupId());
 1002  0
         return revoke;
 1003  
     }
 1004  
 
 1005  
     public static WorkflowAttributeValidationErrorDTO convertWorkflowAttributeValidationError(WorkflowAttributeValidationError error) {
 1006  0
         return new WorkflowAttributeValidationErrorDTO(error.getKey(), error.getMessage());
 1007  
     }
 1008  
 
 1009  
     // Method added for updating notes on server sites based on NoteVO change. Modfy on April 7, 2006
 1010  
     public static void updateNotes(RouteHeaderDTO routeHeaderVO, Long routeHeaderId) {
 1011  0
         NoteDTO[] notes = routeHeaderVO.getNotes();
 1012  0
         NoteDTO[] notesToDelete = routeHeaderVO.getNotesToDelete();
 1013  0
         Note noteToDelete = null;
 1014  0
         Note noteToSave = null;
 1015  
 
 1016  
         // Add or update notes to note table based on notes array in RouteHeaderVO
 1017  0
         if (notes != null) {
 1018  0
             for (NoteDTO note : notes) {
 1019  0
                 if (note != null) {
 1020  0
                     noteToSave = new Note();
 1021  0
                     noteToSave.setNoteId(note.getNoteId());
 1022  0
                     noteToSave.setRouteHeaderId(routeHeaderId);
 1023  0
                     noteToSave.setNoteAuthorWorkflowId(note.getNoteAuthorWorkflowId());
 1024  0
                     noteToSave.setNoteCreateDate(SQLUtils.convertCalendar(note.getNoteCreateDate()));
 1025  0
                     noteToSave.setNoteText(note.getNoteText());
 1026  0
                     noteToSave.setLockVerNbr(note.getLockVerNbr());
 1027  
                     // if notes[i].getNoteId() == null, add note to note table, otherwise update note to note table
 1028  0
                     getNoteService().saveNote(noteToSave);
 1029  
                 }
 1030  
             }
 1031  
 
 1032  
         }
 1033  
 
 1034  
         // Delete notes from note table based on notesToDelete array in RouteHeaderVO
 1035  0
         if (notesToDelete != null) {
 1036  0
             for (NoteDTO element : notesToDelete) {
 1037  0
                 noteToDelete = getNoteService().getNoteByNoteId(element.getNoteId());
 1038  0
                 if (noteToDelete != null) {
 1039  0
                     getNoteService().deleteNote(noteToDelete);
 1040  
                 }
 1041  
             }
 1042  0
             routeHeaderVO.setNotesToDelete(null);
 1043  
         }
 1044  0
     }
 1045  
 
 1046  
     private static NoteService getNoteService() {
 1047  0
         return (NoteService) KEWServiceLocator.getService(KEWServiceLocator.NOTE_SERVICE);
 1048  
     }
 1049  
 
 1050  
     private static NoteDTO[] convertNotesArrayListToNoteVOArray(List notesArrayList) {
 1051  0
         if (notesArrayList.size() > 0) {
 1052  0
             NoteDTO[] noteVOArray = new NoteDTO[notesArrayList.size()];
 1053  0
             int i = 0;
 1054  
             Note tempNote;
 1055  
             NoteDTO tempNoteVO;
 1056  0
             for (Iterator it = notesArrayList.iterator(); it.hasNext();) {
 1057  0
                 tempNote = (Note) it.next();
 1058  0
                 tempNoteVO = new NoteDTO();
 1059  0
                 tempNoteVO.setNoteId(tempNote.getNoteId());
 1060  0
                 tempNoteVO.setRouteHeaderId(tempNote.getRouteHeaderId());
 1061  0
                 tempNoteVO.setNoteAuthorWorkflowId(tempNote.getNoteAuthorWorkflowId());
 1062  0
                 tempNoteVO.setNoteCreateDate(SQLUtils.convertTimestamp(tempNote.getNoteCreateDate()));
 1063  0
                 tempNoteVO.setNoteText(tempNote.getNoteText());
 1064  0
                 tempNoteVO.setLockVerNbr(tempNote.getLockVerNbr());
 1065  0
                 noteVOArray[i] = tempNoteVO;
 1066  0
                 i++;
 1067  
             }
 1068  0
             return noteVOArray;
 1069  
         } else {
 1070  0
             return null;
 1071  
         }
 1072  
     }
 1073  
 
 1074  
     public static SimulationCriteria convertReportCriteriaDTO(ReportCriteriaDTO criteriaVO) {
 1075  0
         if (criteriaVO == null) {
 1076  0
             return null;
 1077  
         }
 1078  0
         SimulationCriteria criteria = new SimulationCriteria();
 1079  0
         criteria.setDestinationNodeName(criteriaVO.getTargetNodeName());
 1080  0
         criteria.setDocumentId(criteriaVO.getRouteHeaderId());
 1081  0
         criteria.setDocumentTypeName(criteriaVO.getDocumentTypeName());
 1082  0
         criteria.setXmlContent(criteriaVO.getXmlContent());
 1083  0
         criteria.setActivateRequests(criteriaVO.getActivateRequests());
 1084  0
         criteria.setFlattenNodes(criteriaVO.isFlattenNodes());
 1085  0
         if (criteriaVO.getRoutingPrincipalId() != null) {
 1086  0
                 KimPrincipal kPrinc = KEWServiceLocator.getIdentityHelperService().getPrincipal(criteriaVO.getRoutingPrincipalId());
 1087  0
             Person user = KIMServiceLocator.getPersonService().getPerson(kPrinc.getPrincipalId());
 1088  0
             if (user == null) {
 1089  0
                 throw new RiceRuntimeException("Could not locate user for the given id: " + criteriaVO.getRoutingPrincipalId());
 1090  
             }
 1091  0
             criteria.setRoutingUser(user);
 1092  
         }
 1093  0
         if (criteriaVO.getRuleTemplateNames() != null) {
 1094  0
             for (int index = 0; index < criteriaVO.getRuleTemplateNames().length; index++) {
 1095  0
                 String ruleTemplateName = criteriaVO.getRuleTemplateNames()[index];
 1096  0
                 criteria.getRuleTemplateNames().add(ruleTemplateName);
 1097  
             }
 1098  
         }
 1099  0
         if (criteriaVO.getNodeNames() != null) {
 1100  0
             for (int i = 0; i < criteriaVO.getNodeNames().length; i++) {
 1101  0
                 String nodeName = criteriaVO.getNodeNames()[i];
 1102  0
                 criteria.getNodeNames().add(nodeName);
 1103  
             }
 1104  
         }
 1105  0
         if (criteriaVO.getTargetPrincipalIds() != null) {
 1106  0
             for (String targetPrincipalId : criteriaVO.getTargetPrincipalIds()) {
 1107  0
                 KimPrincipal principal = KEWServiceLocator.getIdentityHelperService().getPrincipal(targetPrincipalId);
 1108  0
                 criteria.getDestinationRecipients().add(new KimPrincipalRecipient(principal));
 1109  
             }
 1110  
         }
 1111  0
         if (criteriaVO.getActionsToTake() != null) {
 1112  0
             for (int index = 0; index < criteriaVO.getActionsToTake().length; index++) {
 1113  0
                 ReportActionToTakeDTO actionToTakeVO = criteriaVO.getActionsToTake()[index];
 1114  0
                 criteria.getActionsToTake().add(convertReportActionToTakeVO(actionToTakeVO));
 1115  
             }
 1116  
         }
 1117  0
         return criteria;
 1118  
     }
 1119  
 
 1120  
     public static SimulationActionToTake convertReportActionToTakeVO(ReportActionToTakeDTO actionToTakeVO) {
 1121  0
         if (actionToTakeVO == null) {
 1122  0
             return null;
 1123  
         }
 1124  0
         SimulationActionToTake actionToTake = new SimulationActionToTake();
 1125  0
         actionToTake.setNodeName(actionToTakeVO.getNodeName());
 1126  0
         if (StringUtils.isBlank(actionToTakeVO.getActionToPerform())) {
 1127  0
             throw new IllegalArgumentException("ReportActionToTakeVO must contain an action taken code and does not");
 1128  
         }
 1129  0
         actionToTake.setActionToPerform(actionToTakeVO.getActionToPerform());
 1130  0
         if (actionToTakeVO.getPrincipalId() == null) {
 1131  0
             throw new IllegalArgumentException("ReportActionToTakeVO must contain a principalId and does not");
 1132  
         }
 1133  0
         KimPrincipal kPrinc = KEWServiceLocator.getIdentityHelperService().getPrincipal(actionToTakeVO.getPrincipalId());
 1134  0
         Person user = KIMServiceLocator.getPersonService().getPerson(kPrinc.getPrincipalId());
 1135  0
         if (user == null) {
 1136  0
             throw new RiceRuntimeException("Could not locate Person for the given id: " + actionToTakeVO.getPrincipalId());
 1137  
         }
 1138  0
         actionToTake.setUser(user);
 1139  0
         return actionToTake;
 1140  
     }
 1141  
 
 1142  
     public static RuleDelegationDTO convertRuleDelegation(RuleDelegation ruleDelegation) throws WorkflowException {
 1143  0
         if (ruleDelegation == null) {
 1144  0
             return null;
 1145  
         }
 1146  0
         RuleDelegationDTO ruleDelegationVO = new RuleDelegationDTO();
 1147  0
         ruleDelegationVO.setDelegationType(ruleDelegation.getDelegationType());
 1148  0
         ruleDelegationVO.setDelegationRule(convertRule(ruleDelegation.getDelegationRuleBaseValues()));
 1149  0
         return ruleDelegationVO;
 1150  
     }
 1151  
 
 1152  
     // public static RuleDelegation convertRuleExtensionVO(RuleExtensionVO ruleExtensionVO) throws WorkflowException {}
 1153  
 
 1154  
     public static Collection<RuleExtensionDTO> convertRuleExtension(RuleExtension ruleExtension) throws WorkflowException {
 1155  0
         if (ruleExtension == null) {
 1156  0
             return null;
 1157  
         }
 1158  0
         List<RuleExtensionDTO> extensionVOs = new ArrayList<RuleExtensionDTO>();
 1159  0
         for (Object element : ruleExtension.getExtensionValues()) {
 1160  0
             RuleExtensionValue extensionValue = (RuleExtensionValue) element;
 1161  0
             extensionVOs.add(new RuleExtensionDTO(extensionValue.getKey(), extensionValue.getValue()));
 1162  0
         }
 1163  0
         return extensionVOs;
 1164  
     }
 1165  
 
 1166  
     public static KeyValue convertRuleExtensionVO(RuleExtensionDTO ruleExtensionVO) throws WorkflowException {
 1167  0
         if (ruleExtensionVO == null) {
 1168  0
             return null;
 1169  
         }
 1170  0
         return new ConcreteKeyValue(ruleExtensionVO.getKey(), ruleExtensionVO.getValue());
 1171  
     }
 1172  
 
 1173  
     public static RuleResponsibilityDTO convertRuleResponsibility(RuleResponsibility ruleResponsibility) throws WorkflowException {
 1174  0
         if (ruleResponsibility == null) {
 1175  0
             return null;
 1176  
         }
 1177  0
         RuleResponsibilityDTO ruleResponsibilityVO = new RuleResponsibilityDTO();
 1178  0
         ruleResponsibilityVO.setActionRequestedCd(ruleResponsibility.getActionRequestedCd());
 1179  0
         ruleResponsibilityVO.setApprovePolicy(ruleResponsibility.getApprovePolicy());
 1180  0
         ruleResponsibilityVO.setPriority(ruleResponsibility.getPriority());
 1181  0
         ruleResponsibilityVO.setResponsibilityId(ruleResponsibility.getResponsibilityId());
 1182  0
         ruleResponsibilityVO.setRoleName(ruleResponsibility.getRole());
 1183  0
         if (ruleResponsibility.getPrincipal() != null) {
 1184  0
                 ruleResponsibilityVO.setPrincipalId(ruleResponsibility.getPrincipal().getPrincipalId());
 1185  0
         } else if (ruleResponsibility.getGroup() != null) {
 1186  0
                 ruleResponsibilityVO.setGroupId(ruleResponsibility.getGroup().getGroupId());
 1187  0
         } else if (ruleResponsibility.getRole() != null) {
 1188  0
                 ruleResponsibilityVO.setRoleName(ruleResponsibility.getRole());
 1189  
         }
 1190  0
         for (Object element : ruleResponsibility.getDelegationRules()) {
 1191  0
             RuleDelegation ruleDelegation = (RuleDelegation) element;
 1192  0
             ruleResponsibilityVO.addDelegationRule(convertRuleDelegation(ruleDelegation));
 1193  0
         }
 1194  0
         return ruleResponsibilityVO;
 1195  
     }
 1196  
 
 1197  
     // public static KeyValuePair convertRuleResponsibilityVO(RuleResponsibilityVO ruleResponsibilityVO) throws
 1198  
     // WorkflowException {}
 1199  
 
 1200  
     public static RuleDTO convertRule(RuleBaseValues ruleValues) throws WorkflowException {
 1201  0
         if (ruleValues == null) {
 1202  0
             return null;
 1203  
         }
 1204  0
         RuleDTO rule = new RuleDTO();
 1205  0
         rule.setActiveInd(ruleValues.getActiveInd());
 1206  0
         rule.setDescription(ruleValues.getDescription());
 1207  0
         rule.setDocTypeName(ruleValues.getDocTypeName());
 1208  0
         rule.setFromDate(ruleValues.getFromDateString());
 1209  0
         rule.setToDate(ruleValues.getToDateString());
 1210  0
         rule.setForceAction(ruleValues.getForceAction());
 1211  0
         rule.setRuleTemplateId(ruleValues.getRuleTemplateId());
 1212  0
         rule.setRuleTemplateName(ruleValues.getRuleTemplateName());
 1213  
 
 1214  
         // get keyPair values to setup RuleExtensionVOs
 1215  0
         for (Object element : ruleValues.getRuleExtensions()) {
 1216  0
             RuleExtension ruleExtension = (RuleExtension) element;
 1217  0
             rule.addRuleExtensions(convertRuleExtension(ruleExtension));
 1218  0
         }
 1219  
         // get keyPair values to setup RuleExtensionVOs
 1220  0
         for (Object element : ruleValues.getResponsibilities()) {
 1221  0
             RuleResponsibility ruleResponsibility = (RuleResponsibility) element;
 1222  0
             rule.addRuleResponsibility(convertRuleResponsibility(ruleResponsibility));
 1223  0
         }
 1224  0
         return rule;
 1225  
     }
 1226  
 
 1227  
     public static DocSearchCriteriaDTO convertDocumentSearchCriteriaDTO(DocumentSearchCriteriaDTO criteriaVO) throws WorkflowException {
 1228  0
         DocSearchCriteriaDTO criteria = new DocSearchCriteriaDTO();
 1229  0
         criteria.setAppDocId(criteriaVO.getAppDocId());
 1230  0
         criteria.setApprover(criteriaVO.getApprover());
 1231  0
         criteria.setDocRouteStatus(criteriaVO.getDocRouteStatus());
 1232  0
         criteria.setDocTitle(criteriaVO.getDocTitle());
 1233  0
         criteria.setDocTypeFullName(criteriaVO.getDocTypeFullName());
 1234  0
         criteria.setDocVersion(criteriaVO.getDocVersion());
 1235  0
         criteria.setFromDateApproved(criteriaVO.getFromDateApproved());
 1236  0
         criteria.setFromDateCreated(criteriaVO.getFromDateCreated());
 1237  0
         criteria.setFromDateFinalized(criteriaVO.getFromDateFinalized());
 1238  0
         criteria.setFromDateLastModified(criteriaVO.getFromDateLastModified());
 1239  0
         criteria.setInitiator(criteriaVO.getInitiator());
 1240  0
         criteria.setIsAdvancedSearch((criteriaVO.isAdvancedSearch()) ? DocSearchCriteriaDTO.ADVANCED_SEARCH_INDICATOR_STRING : "NO");
 1241  0
         criteria.setSuperUserSearch((criteriaVO.isSuperUserSearch()) ? DocSearchCriteriaDTO.SUPER_USER_SEARCH_INDICATOR_STRING : "NO");
 1242  0
         criteria.setRouteHeaderId(criteriaVO.getRouteHeaderId());
 1243  0
         criteria.setViewer(criteriaVO.getViewer());
 1244  0
         criteria.setWorkgroupViewerName(criteriaVO.getGroupViewerName());
 1245  0
         criteria.setToDateApproved(criteriaVO.getToDateApproved());
 1246  0
         criteria.setToDateCreated(criteriaVO.getToDateCreated());
 1247  0
         criteria.setToDateFinalized(criteriaVO.getToDateFinalized());
 1248  0
         criteria.setToDateLastModified(criteriaVO.getToDateLastModified());
 1249  0
         criteria.setThreshold(criteriaVO.getThreshold());
 1250  0
         criteria.setSaveSearchForUser(criteriaVO.isSaveSearchForUser());
 1251  
 
 1252  
         // generate the route node criteria
 1253  0
         if ( (StringUtils.isNotBlank(criteriaVO.getDocRouteNodeName())) && (StringUtils.isBlank(criteriaVO.getDocTypeFullName())) ) {
 1254  0
             throw new WorkflowException("No document type name specified when attempting to search by route node name '" + criteriaVO.getDocRouteNodeName() + "'");
 1255  0
         } else if ( (StringUtils.isNotBlank(criteriaVO.getDocRouteNodeName())) && (StringUtils.isNotBlank(criteriaVO.getDocTypeFullName())) ) {
 1256  0
             criteria.setDocRouteNodeLogic(criteriaVO.getDocRouteNodeLogic());
 1257  0
             List routeNodes = KEWServiceLocator.getRouteNodeService().getFlattenedNodes(getDocumentTypeByName(criteria.getDocTypeFullName()), true);
 1258  0
             boolean foundRouteNode = false;
 1259  0
             for (Iterator iterator = routeNodes.iterator(); iterator.hasNext();) {
 1260  0
                 RouteNode routeNode = (RouteNode) iterator.next();
 1261  0
                 if (criteriaVO.getDocRouteNodeName().equals(routeNode.getRouteNodeName())) {
 1262  0
                     foundRouteNode = true;
 1263  0
                     break;
 1264  
                 }
 1265  0
             }
 1266  0
             if (!foundRouteNode) {
 1267  0
                 throw new WorkflowException("Could not find route node name '" + criteriaVO.getDocRouteNodeName() + "' for document type name '" + criteriaVO.getDocTypeFullName() + "'");
 1268  
             }
 1269  0
             criteria.setDocRouteNodeId(criteriaVO.getDocRouteNodeName());
 1270  
         }
 1271  
 
 1272  
         // build a map of the search attributes passed in from the client creating lists where keys are duplicated
 1273  0
         HashMap<String, List<String>> searchAttributeValues = new HashMap<String,List<String>>();
 1274  0
         for (KeyValue keyValueVO : criteriaVO.getSearchAttributeValues()) {
 1275  0
             if (searchAttributeValues.containsKey(keyValueVO.getKey())) {
 1276  0
                 searchAttributeValues.get(keyValueVO.getKey()).add(keyValueVO.getValue());
 1277  
             } else {
 1278  0
                 searchAttributeValues.put(keyValueVO.getKey(), Arrays.asList(new String[]{keyValueVO.getValue()}));
 1279  
             }
 1280  
         }
 1281  
         // build the list of SearchAttributeFormContainer objects
 1282  0
         List propertyFields = new ArrayList();
 1283  0
         for (String key : searchAttributeValues.keySet()) {
 1284  0
             List<String> values = searchAttributeValues.get(key);
 1285  0
             SearchAttributeFormContainer container = null;
 1286  0
             if (values.size() == 1) {
 1287  0
                 container = new SearchAttributeFormContainer(key, values.get(0));
 1288  0
             } else if (values.size() > 1) {
 1289  0
                 container = new SearchAttributeFormContainer(key, (String[])values.toArray());
 1290  
             }
 1291  0
             if (container != null) {
 1292  0
                 propertyFields.add(container);
 1293  
             }
 1294  0
         }
 1295  0
         DocSearchUtils.addSearchableAttributesToCriteria(criteria, propertyFields, true);
 1296  0
         return criteria;
 1297  
     }
 1298  
 
 1299  
     private static DocumentType getDocumentTypeByName(String documentTypeName) {
 1300  0
         return KEWServiceLocator.getDocumentTypeService().findByName(documentTypeName);
 1301  
     }
 1302  
 
 1303  
     public static DocumentSearchResultDTO convertDocumentSearchResultComponents(DocumentSearchResultComponents searchResult) throws WorkflowException {
 1304  0
         DocumentSearchResultDTO resultsVO = new DocumentSearchResultDTO();
 1305  0
         resultsVO.setSearchResults(convertDocumentSearchResults(searchResult.getSearchResults()));
 1306  0
         return resultsVO;
 1307  
     }
 1308  
 
 1309  
     private static List<DocumentSearchResultRowDTO> convertDocumentSearchResults(List<DocumentSearchResult> searchResults) throws WorkflowException {
 1310  0
         List<DocumentSearchResultRowDTO> rowVOs = new ArrayList<DocumentSearchResultRowDTO>();
 1311  0
         for (DocumentSearchResult documentSearchResult : searchResults) {
 1312  0
             rowVOs.add(convertDocumentSearchResult(documentSearchResult));
 1313  
         }
 1314  0
         return rowVOs;
 1315  
     }
 1316  
 
 1317  
     public static DocumentSearchResultRowDTO convertDocumentSearchResult(DocumentSearchResult resultRow) throws WorkflowException {
 1318  0
         DocumentSearchResultRowDTO rowVO = new DocumentSearchResultRowDTO();
 1319  0
         List<ConcreteKeyValue> fieldValues = new ArrayList<ConcreteKeyValue>();
 1320  0
         for (KeyValueSort keyValueSort : resultRow.getResultContainers()) {
 1321  0
             fieldValues.add(new ConcreteKeyValue(keyValueSort.getKey(),keyValueSort.getUserDisplayValue()));
 1322  
         }
 1323  0
         rowVO.setFieldValues(fieldValues);
 1324  0
         return rowVO;
 1325  
     }
 1326  
 
 1327  
     public static DocumentStatusTransitionDTO convertDocumentStatusTransition(DocumentStatusTransition transition) throws WorkflowException {
 1328  0
             DocumentStatusTransitionDTO tranVO = new DocumentStatusTransitionDTO();
 1329  0
             tranVO.setStatusTransitionId(transition.getStatusTransitionId());
 1330  0
             tranVO.setRouteHeaderId(transition.getRouteHeaderId());
 1331  0
             tranVO.setOldAppDocStatus(transition.getOldAppDocStatus());
 1332  0
             tranVO.setNewAppDocStatus(transition.getNewAppDocStatus());
 1333  0
             tranVO.setStatusTransitionDate(transition.getStatusTransitionDate());            
 1334  0
             return tranVO;
 1335  
     }
 1336  
     
 1337  
     //    public static RuleBaseValues convertRuleVO(RuleVO ruleVO) throws WorkflowException {}
 1338  
 
 1339  
     private static void handleException(String message, Exception e) throws WorkflowException {
 1340  0
         if (e instanceof RuntimeException) {
 1341  0
             throw (RuntimeException) e;
 1342  0
         } else if (e instanceof WorkflowException) {
 1343  0
             throw (WorkflowException) e;
 1344  
         }
 1345  0
         throw new WorkflowException(message, e);
 1346  
     }
 1347  
 
 1348  
     //convert DocumentLink beans to array of DocumentLinkDTO
 1349  
     public static DocumentLinkDTO[] convertDocumentLink(Collection<DocumentLink> links) {
 1350  0
         if (links == null) {
 1351  0
             return null;
 1352  
         }
 1353  0
         DocumentLinkDTO[] docLinkVOs = new DocumentLinkDTO[links.size()];
 1354  
         
 1355  0
         int index = 0;
 1356  
         
 1357  0
         for (DocumentLink link: links) {
 1358  0
             docLinkVOs[index++] = convertDocumentLink(link);
 1359  
         }
 1360  0
         return docLinkVOs;
 1361  
     }
 1362  
     
 1363  
     //convert DocumentLink beans to list of DocumentLinkDTO
 1364  
     public static List<DocumentLinkDTO> convertDocumentLinkToArrayList(Collection<DocumentLink> links) {
 1365  0
         if (links == null) {
 1366  0
             return null;
 1367  
         }
 1368  0
         List<DocumentLinkDTO> docLinkVOs = new ArrayList<DocumentLinkDTO>(links.size());
 1369  
         
 1370  0
         for (DocumentLink link: links) {
 1371  0
             docLinkVOs.add(convertDocumentLink(link));
 1372  
         }
 1373  0
         return docLinkVOs;
 1374  
     }
 1375  
     
 1376  
     //covert DocumentLink bean to DocumentLinkDTO
 1377  
     public static DocumentLinkDTO convertDocumentLink(DocumentLink link) {
 1378  0
         if (link == null) {
 1379  0
             return null;
 1380  
         }
 1381  0
         DocumentLinkDTO linkVO = new DocumentLinkDTO();
 1382  0
         linkVO.setLinbkId(link.getDocLinkId());
 1383  0
         linkVO.setOrgnDocId(link.getOrgnDocId());
 1384  0
         linkVO.setDestDocId(link.getDestDocId());
 1385  
         
 1386  0
         return linkVO;
 1387  
     }
 1388  
 
 1389  
 }