Coverage Report - org.kuali.rice.kew.xml.DocumentTypeXmlParser
 
Classes in this File Line Coverage Branch Coverage Complexity
DocumentTypeXmlParser
0%
0/781
0%
0/344
12.654
DocumentTypeXmlParser$1
N/A
N/A
12.654
DocumentTypeXmlParser$DocTypeNode
0%
0/4
N/A
12.654
DocumentTypeXmlParser$RoutePathContext
0%
0/2
N/A
12.654
 
 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.xml;
 18  
 
 19  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.ACTIVE;
 20  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.APP_DOC_STATUSES;
 21  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.BLANKET_APPROVE_GROUP_NAME;
 22  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.BLANKET_APPROVE_POLICY;
 23  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.BLANKET_APPROVE_WORKGROUP_NAME;
 24  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.CUSTOM_EMAIL_STYLESHEET;
 25  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.DATA_ELEMENT;
 26  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.DEFAULT_EXCEPTION_GROUP_NAME;
 27  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.DEFAULT_EXCEPTION_WORKGROUP_NAME;
 28  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.DESCRIPTION;
 29  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.DOCUMENT_TYPE;
 30  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.DOCUMENT_TYPES;
 31  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.DOCUMENT_TYPE_OVERWRITE_MODE;
 32  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.DOC_HANDLER;
 33  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.DOC_SEARCH_HELP_URL;
 34  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.EXCEPTION_GROUP_NAME;
 35  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.EXCEPTION_WORKGROUP;
 36  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.EXCEPTION_WORKGROUP_NAME;
 37  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.HELP_DEFINITION_URL;
 38  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.INITIAL_NODE;
 39  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.LABEL;
 40  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.NAMESPACE;
 41  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.NOTIFICATION_FROM_ADDRESS;
 42  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.PARENT;
 43  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.POLICIES;
 44  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.POLICY;
 45  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.POST_PROCESSOR_NAME;
 46  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.PROCESS_NAME;
 47  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.REPORTING_GROUP_NAME;
 48  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.REPORTING_WORKGROUP_NAME;
 49  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.ROUTE_NODES;
 50  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.ROUTE_PATH;
 51  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.ROUTE_PATHS;
 52  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.ROUTING_VERSION;
 53  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.SECURITY;
 54  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.SERVICE_NAMESPACE;
 55  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.STATUS;
 56  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.SUPER_USER_GROUP_NAME;
 57  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.SUPER_USER_WORKGROUP_NAME;
 58  
 
 59  
 import java.io.BufferedInputStream;
 60  
 import java.io.ByteArrayInputStream;
 61  
 import java.io.IOException;
 62  
 import java.io.InputStream;
 63  
 import java.util.ArrayList;
 64  
 import java.util.HashMap;
 65  
 import java.util.HashSet;
 66  
 import java.util.Iterator;
 67  
 import java.util.LinkedList;
 68  
 import java.util.List;
 69  
 import java.util.Map;
 70  
 import java.util.Set;
 71  
 
 72  
 import javax.xml.parsers.ParserConfigurationException;
 73  
 import javax.xml.xpath.XPath;
 74  
 import javax.xml.xpath.XPathConstants;
 75  
 import javax.xml.xpath.XPathExpressionException;
 76  
 
 77  
 import org.apache.commons.lang.StringUtils;
 78  
 import org.kuali.rice.core.api.services.CoreApiServiceLocator;
 79  
 import org.kuali.rice.core.util.XmlHelper;
 80  
 import org.kuali.rice.core.util.XmlJotter;
 81  
 import org.kuali.rice.core.xml.XmlException;
 82  
 import org.kuali.rice.kew.doctype.ApplicationDocumentStatus;
 83  
 import org.kuali.rice.kew.doctype.DocumentTypeAttribute;
 84  
 import org.kuali.rice.kew.doctype.DocumentTypePolicy;
 85  
 import org.kuali.rice.kew.doctype.DocumentTypePolicyEnum;
 86  
 import org.kuali.rice.kew.doctype.bo.DocumentType;
 87  
 import org.kuali.rice.kew.document.DocumentTypeMaintainable;
 88  
 import org.kuali.rice.kew.engine.node.ActivationTypeEnum;
 89  
 import org.kuali.rice.kew.engine.node.BranchPrototype;
 90  
 import org.kuali.rice.kew.engine.node.NodeType;
 91  
 import org.kuali.rice.kew.engine.node.Process;
 92  
 import org.kuali.rice.kew.engine.node.RoleNode;
 93  
 import org.kuali.rice.kew.engine.node.RouteNode;
 94  
 import org.kuali.rice.kew.engine.node.RouteNodeConfigParam;
 95  
 import org.kuali.rice.kew.exception.InvalidParentDocTypeException;
 96  
 import org.kuali.rice.kew.exception.WorkflowException;
 97  
 import org.kuali.rice.kew.exception.WorkflowRuntimeException;
 98  
 import org.kuali.rice.kew.export.KewExportDataSet;
 99  
 import org.kuali.rice.kew.role.RoleRouteModule;
 100  
 import org.kuali.rice.kew.rule.FlexRM;
 101  
 import org.kuali.rice.kew.rule.bo.RuleAttribute;
 102  
 import org.kuali.rice.kew.rule.bo.RuleTemplate;
 103  
 import org.kuali.rice.kew.rule.xmlrouting.XPathHelper;
 104  
 import org.kuali.rice.kew.service.KEWServiceLocator;
 105  
 import org.kuali.rice.kew.util.KEWConstants;
 106  
 import org.kuali.rice.kew.util.Utilities;
 107  
 import org.kuali.rice.kim.bo.Group;
 108  
 import org.kuali.rice.kim.service.IdentityManagementService;
 109  
 import org.kuali.rice.kim.service.KIMServiceLocator;
 110  
 import org.kuali.rice.kns.exception.GroupNotFoundException;
 111  
 import org.kuali.rice.kns.maintenance.Maintainable;
 112  
 import org.kuali.rice.kns.util.MaintenanceUtils;
 113  
 import org.kuali.rice.kns.util.ObjectUtils;
 114  
 import org.w3c.dom.Document;
 115  
 import org.w3c.dom.Element;
 116  
 import org.w3c.dom.NamedNodeMap;
 117  
 import org.w3c.dom.Node;
 118  
 import org.w3c.dom.NodeList;
 119  
 import org.xml.sax.SAXException;
 120  
 
 121  
 
 122  
 /**
 123  
  * A parser for parsing an XML file into {@link DocumentType}s.
 124  
  *
 125  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 126  
  */
 127  0
 public class DocumentTypeXmlParser {
 128  
 
 129  0
     private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(DocumentTypeXmlParser.class);
 130  
 
 131  
     private static final String NEXT_NODE_EXP = "./@nextNode";
 132  
     private static final String PARENT_NEXT_NODE_EXP = "../@nextNode";
 133  
     private static final String NEXT_DOC_STATUS_EXP = "./@nextAppDocStatus";
 134  
     /**
 135  
      * Default route node activation type to use if omitted
 136  
      */
 137  
     private static final String DEFAULT_ACTIVATION_TYPE = "S";
 138  
 
 139  
     public List docTypeRouteNodes;
 140  
     private Map nodesMap;
 141  
     private XPath xpath;
 142  
     private Group defaultExceptionWorkgroup;
 143  
     
 144  
     protected XPath getXPath() {
 145  0
         if (this.xpath == null) {
 146  0
             this.xpath = XPathHelper.newXPath();
 147  
         }
 148  0
         return xpath;
 149  
     }
 150  
     
 151  
     public List parseDocumentTypes(InputStream input) throws SAXException, IOException, ParserConfigurationException, XPathExpressionException, WorkflowException, GroupNotFoundException {
 152  0
         Document routeDocument=XmlHelper.trimXml(input);
 153  0
         Map documentTypesByName = new HashMap();
 154  0
         for (Iterator iterator = parseAllDocumentTypes(routeDocument).iterator(); iterator.hasNext();) {
 155  0
             DocumentType type = (DocumentType) iterator.next();
 156  0
             documentTypesByName.put(type.getName(), type);
 157  0
         }
 158  0
         return new ArrayList(documentTypesByName.values());
 159  
     }
 160  
 
 161  
     /**
 162  
      * Parses all document types, both standard and routing.
 163  
      * 
 164  
      * @param routeDocument The DOM document to parse.
 165  
      * @return A list containing the desired document types.
 166  
      */
 167  
     private List<DocumentType> parseAllDocumentTypes(Document routeDocument) throws SAXException, IOException, ParserConfigurationException, XPathExpressionException, WorkflowException, GroupNotFoundException {
 168  
             // A mapping from the names of uninitialized parent doc types to the child nodes that depend on the parent doc.
 169  0
             Map<String,List<DocTypeNode>> pendingChildDocs = new HashMap<String,List<DocTypeNode>>();
 170  
             // A mapping from the names of uninitialized parent doc types to the names of the dependent children.
 171  0
             Map<String,List<String>> pendingChildNames = new HashMap<String,List<String>>();
 172  
             // A stack containing Iterators over the various lists of unprocessed nodes; this allows for faster parent-child resolution
 173  
             // without having to use recursion.
 174  0
         List<Iterator<DocTypeNode>> docInitStack = new ArrayList<Iterator<DocTypeNode>>();
 175  
         // The first List of document types.
 176  0
         List<DocTypeNode> initialList = new ArrayList<DocTypeNode>();
 177  
             // The current size of the stack.
 178  0
             int stackLen = 0;
 179  
             // The current Iterator instance.
 180  0
             Iterator<DocTypeNode> currentIter = null;
 181  
         // The current document type node.
 182  0
         DocTypeNode currDocNode = null;
 183  
 
 184  0
         List<DocumentType> docTypeBeans = new ArrayList<DocumentType>();
 185  
                 
 186  
         // Acquire the "standard" and "routing" document types.
 187  0
         NodeList initialNodes = null;
 188  0
         xpath = XPathHelper.newXPath();
 189  0
         initialNodes = (NodeList) getXPath().evaluate("/" + DATA_ELEMENT + "/" + DOCUMENT_TYPES + "/" + DOCUMENT_TYPE, routeDocument, XPathConstants.NODESET);
 190  
         // Take each NodeList's nodes and insert them into a List implementation.
 191  0
         for (int j = 0; j < initialNodes.getLength(); j++) {
 192  0
             Node documentTypeNode = initialNodes.item(j);
 193  0
             boolean docIsStandard = true;
 194  
             try {
 195  0
                 String xpathModeExpression = "./@" + DOCUMENT_TYPE_OVERWRITE_MODE;
 196  0
                 if (XmlHelper.pathExists(xpath, xpathModeExpression, documentTypeNode)) {
 197  0
                     String overwriteMode = (String) getXPath().evaluate(xpathModeExpression, documentTypeNode, XPathConstants.STRING);
 198  0
                     docIsStandard = !StringUtils.equalsIgnoreCase("true", overwriteMode);
 199  
                 }
 200  0
             } catch (XPathExpressionException xpee) {
 201  0
                 LOG.error("Error trying to check for '" + DOCUMENT_TYPE_OVERWRITE_MODE + "' attribute on document type element", xpee);
 202  0
                 throw xpee;
 203  0
             }
 204  0
                 initialList.add(new DocTypeNode(documentTypeNode, docIsStandard));
 205  
         }
 206  
 
 207  
         // Setup the Iterator instance to start with.
 208  0
         currentIter = initialList.iterator();
 209  
         
 210  
         // Keep looping until all Iterators are complete or an uncaught exception is thrown.
 211  0
         while (stackLen >= 0) {
 212  
                 // Determine the action to take based on whether there are remaining nodes in the present iterator.
 213  0
                 if (currentIter.hasNext()) {
 214  
                         // If the current iterator still has more nodes, process the next one.
 215  0
                         String newParentName = null;
 216  0
                         currDocNode = currentIter.next();
 217  
                         // Initialize the document, and catch any child initialization problems.
 218  
                         try {
 219  
                                 // Take appropriate action based on whether the document is a standard one or a routing one.
 220  0
                                 DocumentType docType = parseDocumentType(!currDocNode.isStandard, currDocNode.docNode); 
 221  
                                 // Insert into appropriate position in the final list, based on the doc type's location in the XML file's list.
 222  0
                                       docTypeBeans.add(docType);
 223  
                             // Store the document's name for reference.
 224  0
                             newParentName = docType.getName();
 225  
                         }
 226  0
                         catch (InvalidParentDocTypeException exc) {
 227  
                                 // If the parent document has not been processed yet, then store the child document.
 228  0
                             List<DocTypeNode> tempList = null;
 229  0
                             List<String> tempStrList = null;
 230  0
                             String parentName = exc.getParentName();
 231  0
                             String childName = exc.getChildName();
 232  0
                             if (parentName == null || childName == null) { // Make sure the parent & child documents' names are defined.
 233  0
                                     throw exc;
 234  
                             }
 235  0
                             tempList = pendingChildDocs.get(parentName);
 236  0
                             tempStrList = pendingChildNames.get(parentName);
 237  0
                             if (tempList == null) { // Initialize a new child document list if necessary.
 238  0
                                     tempList = new ArrayList<DocTypeNode>();
 239  0
                                     tempStrList = new ArrayList<String>();
 240  0
                                     pendingChildDocs.put(parentName, tempList);
 241  0
                                     pendingChildNames.put(parentName, tempStrList);
 242  
                             }
 243  0
                                 tempList.add(currDocNode);
 244  0
                                 tempStrList.add(childName);
 245  0
                         }
 246  
                         
 247  
                     // Check for any delayed child documents that are dependent on the current document.
 248  0
                         List<DocTypeNode> childrenToProcess = pendingChildDocs.remove(newParentName);
 249  0
                         pendingChildNames.remove(newParentName);
 250  0
                         if (childrenToProcess != null) {
 251  0
                                 LOG.info("'" + newParentName + "' has children that were delayed; now processing them...");
 252  
                                 // If there are any pending children, push the old Iterator onto the stack and process the new Iterator on the next
 253  
                                 // iteration of the loop.
 254  0
                                 stackLen++;
 255  0
                                 docInitStack.add(currentIter);
 256  0
                                 currentIter = childrenToProcess.iterator();
 257  
                         }
 258  0
                 }
 259  
                 else {
 260  
                         // If the current Iterator has reached its end, discard it and pop the next one (if any) from the stack.
 261  0
                         stackLen--;
 262  0
                         currentIter = ((stackLen >= 0) ? docInitStack.remove(stackLen) : null);
 263  
                  }
 264  
         }
 265  
         
 266  
         // Throw an error if there are still any uninitialized child documents.
 267  0
         if (pendingChildDocs.size() > 0) {
 268  0
                 StringBuilder errMsg = new StringBuilder("Invalid parent document types: ");
 269  
                 // Construct the error message.
 270  0
                 for (Iterator<String> unknownParents = pendingChildNames.keySet().iterator(); unknownParents.hasNext();) {
 271  0
                         String currParent = unknownParents.next();
 272  0
                         errMsg.append("Invalid parent doc type '").append(currParent).append("' is needed by child doc types ");
 273  0
                         for (Iterator<String> failedChildren = pendingChildNames.get(currParent).iterator(); failedChildren.hasNext();) {
 274  0
                                 String currChild = failedChildren.next();
 275  0
                                 errMsg.append('\'').append(currChild).append((failedChildren.hasNext()) ? "', " : "'; ");
 276  0
                         }
 277  0
                 }
 278  
                 // Throw the exception.
 279  0
                 throw new InvalidParentDocTypeException(null, null, errMsg.toString());
 280  
         }
 281  
         
 282  0
             return docTypeBeans;
 283  
     }
 284  
 
 285  
     private DocumentType parseDocumentType(boolean isOverwrite, Node documentTypeNode) throws SAXException, IOException, ParserConfigurationException, XPathExpressionException, WorkflowException, GroupNotFoundException {
 286  0
         DocumentType documentType = getFullDocumentType(isOverwrite, documentTypeNode);
 287  
 //        parseStructure(isOverwrite, documentTypeNode, documentType, new RoutePathContext());
 288  
         // reset variables
 289  0
         docTypeRouteNodes = null;
 290  0
         nodesMap = null;
 291  0
         xpath = null;
 292  0
         defaultExceptionWorkgroup = null;
 293  
 
 294  0
         LOG.debug("Saving document type " + documentType.getName());
 295  0
         routeDocumentType(documentType);
 296  0
         return documentType;
 297  
     }
 298  
 
 299  
     private DocumentType getFullDocumentType(boolean isOverwrite, Node documentTypeNode) throws XPathExpressionException, GroupNotFoundException, XmlException, WorkflowException, SAXException, IOException, ParserConfigurationException {
 300  0
         DocumentType documentType = getDocumentType(isOverwrite, documentTypeNode);
 301  
         /*
 302  
          * The following code does not need to apply the isOverwrite mode logic because it already checks to see if each node
 303  
          * is available on the ingested XML. If the node is ingested then it doesn't matter if we're in overwrite mode or not
 304  
          * the ingested code should save.
 305  
          */
 306  0
         NodeList policiesList = (NodeList) getXPath().evaluate("./" + POLICIES, documentTypeNode, XPathConstants.NODESET);
 307  0
         if (policiesList.getLength() > 1) {
 308  
             // more than one <policies> tag is invalid
 309  0
             throw new XmlException("More than one " + POLICIES + " node is present in a document type node");
 310  
         }
 311  0
         else if (policiesList.getLength() > 0) {
 312  
             // if there is exactly one <policies> tag then parse it and use the values
 313  0
             NodeList policyNodes = (NodeList) getXPath().evaluate("./" + POLICY, policiesList.item(0), XPathConstants.NODESET);
 314  0
             documentType.setPolicies(getDocumentTypePolicies(policyNodes, documentType));
 315  
         }
 316  
 
 317  0
         NodeList attributeList = (NodeList) getXPath().evaluate("./attributes", documentTypeNode, XPathConstants.NODESET);
 318  0
         if (attributeList.getLength() > 1) {
 319  0
             throw new XmlException("More than one attributes node is present in a document type node");
 320  
         }
 321  0
         else if (attributeList.getLength() > 0) {
 322  0
             NodeList attributeNodes = (NodeList) getXPath().evaluate("./attribute", attributeList.item(0), XPathConstants.NODESET);
 323  0
             documentType.setDocumentTypeAttributes(getDocumentTypeAttributes(attributeNodes, documentType));
 324  
         }
 325  
 
 326  0
         NodeList securityList = (NodeList) getXPath().evaluate("./" + SECURITY, documentTypeNode, XPathConstants.NODESET);
 327  0
         if (securityList.getLength() > 1) {
 328  0
             throw new XmlException("More than one " + SECURITY + " node is present in a document type node");
 329  
         }
 330  0
         else if (securityList.getLength() > 0) {
 331  
            try {
 332  0
              Node securityNode = securityList.item(0);
 333  0
              String securityText = XmlJotter.jotNode(securityNode);
 334  0
              documentType.setDocumentTypeSecurityXml(securityText);
 335  
            }
 336  0
            catch (Exception e) {
 337  0
              throw new XmlException(e);
 338  0
            }
 339  
         }
 340  0
         parseStructure(isOverwrite, documentTypeNode, documentType, new RoutePathContext());
 341  0
         return documentType;
 342  
     }
 343  
 
 344  
     private void parseStructure(boolean isOverwrite, Node documentTypeNode, DocumentType documentType, RoutePathContext context) throws XPathExpressionException, XmlException, GroupNotFoundException {
 345  
         // TODO have a validation function that takes an xpath statement and blows chunks if that
 346  
         // statement returns false
 347  0
         boolean hasRoutePathsElement = false;
 348  
         try {
 349  0
             hasRoutePathsElement = XmlHelper.pathExists(xpath, "./" + ROUTE_PATHS, documentTypeNode);
 350  0
         } catch (XPathExpressionException xpee) {
 351  0
             LOG.error("Error obtaining document type " + ROUTE_PATHS, xpee);
 352  0
             throw xpee;
 353  0
         }
 354  0
         boolean hasRouteNodesElement = false;
 355  
         try {
 356  0
             hasRouteNodesElement = XmlHelper.pathExists(xpath, "./" + ROUTE_NODES, documentTypeNode);
 357  0
         } catch (XPathExpressionException xpee) {
 358  0
             LOG.error("Error obtaining document type " + ROUTE_NODES, xpee);
 359  0
             throw xpee;
 360  0
         }
 361  
 
 362  
         // check to see if we're in overwrite mode
 363  0
         if (isOverwrite) {
 364  
             // since we're in overwrite mode, if we don't have a routeNodes element or a routePaths element we simply return
 365  0
             if (!hasRouteNodesElement && !hasRoutePathsElement) {
 366  0
                 return;
 367  
             }
 368  
             // if we have route nodes and route paths we're going to overwrite all existing processes so we can clear the current list
 369  0
             else if (hasRouteNodesElement && hasRoutePathsElement) {
 370  0
                 documentType.setProcesses(new ArrayList());
 371  
             }
 372  
             // check to see if we have one but not the other element of routePaths and routeNodes
 373  0
             else if (!hasRouteNodesElement || !hasRoutePathsElement) {
 374  
                 // throw an exception since an ingestion can only have neither or both of the routePaths and routeNodes elements
 375  0
                 throw new XmlException("A overwriting document type ingestion can not have only one of the " + ROUTE_PATHS + " and " + ROUTE_NODES + " elements.  Either both or neither should be defined.");
 376  
             }
 377  
         }
 378  
 
 379  
         NodeList processNodes;
 380  
 
 381  
         try {
 382  0
             if (XmlHelper.pathExists(xpath, "./" + ROUTE_PATHS + "/" + ROUTE_PATH, documentTypeNode)) {
 383  0
                 processNodes = (NodeList) getXPath().evaluate("./" + ROUTE_PATHS + "/" + ROUTE_PATH, documentTypeNode, XPathConstants.NODESET);
 384  
             } else {
 385  0
                 if (hasRoutePathsElement) {
 386  0
                     createEmptyProcess(documentType);
 387  
                 }
 388  0
                 return;
 389  
             }
 390  0
         } catch (XPathExpressionException xpee) {
 391  0
             LOG.error("Error obtaining document type routePaths", xpee);
 392  0
             throw xpee;
 393  0
         }
 394  
 
 395  0
         createProcesses(processNodes, documentType);
 396  
 
 397  0
         NodeList nodeList = null;
 398  
         try {
 399  0
             nodeList = (NodeList) getXPath().evaluate("./" + ROUTE_PATHS + "/" + ROUTE_PATH + "/start", documentTypeNode, XPathConstants.NODESET);
 400  0
         } catch (XPathExpressionException xpee) {
 401  0
             LOG.error("Error obtaining document type routePath start", xpee);
 402  0
             throw xpee;
 403  0
         }
 404  0
         if (nodeList.getLength() > 1) {
 405  0
             throw new XmlException("More than one start node is present in route path");
 406  0
         } else if (nodeList.getLength() == 0) {
 407  0
             throw new XmlException("No start node is present in route path");
 408  
         }
 409  
         try {
 410  0
             nodeList = (NodeList) getXPath().evaluate(".//" + ROUTE_NODES, documentTypeNode, XPathConstants.NODESET);
 411  0
         } catch (XPathExpressionException xpee) {
 412  0
             LOG.error("Error obtaining document type routeNodes", xpee);
 413  0
             throw xpee;
 414  0
         }
 415  0
         if (nodeList.getLength() > 1) {
 416  0
             throw new XmlException("More than one routeNodes node is present in documentType node");
 417  0
         } else if (nodeList.getLength() == 0) {
 418  0
             throw new XmlException("No routeNodes node is present in documentType node");
 419  
         }
 420  0
         Node routeNodesNode = nodeList.item(0);
 421  0
         checkForOrphanedRouteNodes(documentTypeNode, routeNodesNode);
 422  
 
 423  
         // passed validation.
 424  0
         nodesMap = new HashMap();
 425  0
         for (int index = 0; index < processNodes.getLength(); index++) {
 426  0
             Node processNode = processNodes.item(index);
 427  
             String startName;
 428  
             try {
 429  0
                 startName = (String) getXPath().evaluate("./start/@name", processNode, XPathConstants.STRING);
 430  0
             } catch (XPathExpressionException xpee) {
 431  0
                 LOG.error("Error obtaining routePath start name attribute", xpee);
 432  0
                 throw xpee;
 433  0
             }
 434  0
             String processName = KEWConstants.PRIMARY_PROCESS_NAME;
 435  0
             if (org.apache.commons.lang.StringUtils.isEmpty(startName)) {
 436  
                 try {
 437  0
                     startName = (String) getXPath().evaluate("./@" + INITIAL_NODE, processNode, XPathConstants.STRING);
 438  0
                 } catch (XPathExpressionException xpee) {
 439  0
                     LOG.error("Error obtaining routePath initialNode attribute", xpee);
 440  0
                     throw xpee;
 441  0
                 }
 442  
                 try {
 443  0
                     processName = (String) getXPath().evaluate("./@" + PROCESS_NAME, processNode, XPathConstants.STRING);
 444  0
                 } catch (XPathExpressionException xpee) {
 445  0
                     LOG.error("Error obtaining routePath processName attribute", xpee);
 446  0
                     throw xpee;
 447  0
                 }
 448  0
                 if (org.apache.commons.lang.StringUtils.isEmpty(startName)) {
 449  0
                     throw new XmlException("Invalid routePath: no initialNode attribute defined!");
 450  
                 }
 451  
             }
 452  0
             RouteNode routeNode = createRouteNode(null, startName, processNode, routeNodesNode, documentType, context);
 453  0
             if (routeNode != null) {
 454  0
                 Process process = documentType.getNamedProcess(processName);
 455  0
                 process.setInitialRouteNode(routeNode);
 456  
             }
 457  
         }
 458  
 
 459  0
     }
 460  
 
 461  
     private DocumentType getDocumentType(boolean isOverwrite, Node documentTypeNode) throws XPathExpressionException, GroupNotFoundException, XmlException, WorkflowException, SAXException, IOException, ParserConfigurationException {
 462  0
         DocumentType documentType = null;
 463  0
         String documentTypeName = getDocumentTypeNameFromNode(documentTypeNode);
 464  0
         DocumentType previousDocumentType = KEWServiceLocator.getDocumentTypeService().findByName(documentTypeName);
 465  0
         if (isOverwrite) {
 466  
             // we don't need the isOverwrite value to be passed here because we're only temporarily creating this document type in memory
 467  0
             documentType = generateNewDocumentTypeFromExisting(documentTypeName);
 468  
             // export the document type that exists in the database
 469  
         }
 470  
         // if we don't have a valid value for documentType create a brand new instance
 471  0
         if (ObjectUtils.isNull(documentType)) {
 472  0
             documentType = new DocumentType();
 473  
         }
 474  0
         documentType.setName(documentTypeName);
 475  
 
 476  
         // set the description on the document type
 477  
         // the description is always taken from the previous document type unless specified in the ingested file
 478  0
         String description = null;
 479  
         try {
 480  0
             description = (String) getXPath().evaluate("./" + DESCRIPTION, documentTypeNode, XPathConstants.STRING);
 481  0
         } catch (XPathExpressionException xpee) {
 482  0
             LOG.error("Error obtaining document type description", xpee);
 483  0
             throw xpee;
 484  0
         }
 485  
         // if the ingestion has produced a valid value then set it on the document
 486  0
         if (StringUtils.isNotBlank(description)) {
 487  0
             documentType.setDescription(description);
 488  
         }
 489  
         // at this point we know the ingested value is blank
 490  0
         else if (!isOverwrite) {
 491  
             // if this is not an overwrite we need to check the previous document type version for a value to pull forward
 492  0
             if ( (ObjectUtils.isNotNull(previousDocumentType)) && (StringUtils.isNotBlank(previousDocumentType.getDescription())) ) {
 493  
                 // keep the same value from the previous version of the document type from the database
 494  0
                 description = previousDocumentType.getDescription();
 495  
             }
 496  0
             documentType.setDescription(description);
 497  
         }
 498  
 
 499  
         // set the label on the document type
 500  0
         String label = null;
 501  
         try {
 502  0
             label = (String) getXPath().evaluate("./" + LABEL, documentTypeNode, XPathConstants.STRING);
 503  0
         } catch (XPathExpressionException xpee) {
 504  0
             LOG.error("Error obtaining document type label", xpee);
 505  0
             throw xpee;
 506  0
         }
 507  
         // if the ingestion has produced a valid value then set it on the document
 508  0
         if (StringUtils.isNotBlank(label)) {
 509  0
             documentType.setLabel(label);
 510  
         }
 511  
         // at this point we know the ingested value is blank
 512  0
         else if (!isOverwrite) {
 513  
             // if this is not an overwrite we need to check the previous document type version for a value to pull forward
 514  0
             if (ObjectUtils.isNotNull(previousDocumentType) && StringUtils.isNotBlank(previousDocumentType.getLabel())) {
 515  
                 // keep the same value from the previous version of the document type from the database
 516  0
                 label = previousDocumentType.getLabel();
 517  
             } else {
 518  
                 // otherwise set it to undefined
 519  0
                 label = KEWConstants.DEFAULT_DOCUMENT_TYPE_LABEL;
 520  
             }
 521  0
             documentType.setLabel(label);
 522  
         }
 523  
 
 524  
         // set the post processor class on the document type
 525  
         try {
 526  
             /*
 527  
              * - if the element tag is ingested... take whatever value is given, even if it's empty 
 528  
              * - we disregard the isOverwrite because if the element tag does not exist in the ingestion
 529  
              * then the documentType should already carry the value from the previous document type
 530  
              */
 531  0
             if (XmlHelper.pathExists(xpath, "./" + POST_PROCESSOR_NAME, documentTypeNode)) {
 532  0
                 String postProcessor = (String) getXPath().evaluate("./" + POST_PROCESSOR_NAME, documentTypeNode, XPathConstants.STRING);
 533  0
                 if (StringUtils.isEmpty(postProcessor)) {
 534  0
                     documentType.setPostProcessorName(KEWConstants.POST_PROCESSOR_NON_DEFINED_VALUE);
 535  
                 } else {
 536  0
                     documentType.setPostProcessorName((String) getXPath().evaluate("./" + POST_PROCESSOR_NAME, documentTypeNode, XPathConstants.STRING));
 537  
                 }    
 538  
             }
 539  
                 
 540  0
         } catch (XPathExpressionException xpee) {
 541  0
             LOG.error("Error obtaining document type postProcessorName", xpee);
 542  0
             throw xpee;
 543  0
         }
 544  
 
 545  
         // set the document handler URL on the document type
 546  
         try {
 547  
             /*
 548  
              * - if the element tag is ingested... take whatever value is given, even if it's empty 
 549  
              * - we disregard the isOverwrite because if the element tag does not exist in the ingestion
 550  
              * then the documentType should already carry the value from the previous document type
 551  
              */
 552  0
             if (XmlHelper.pathExists(xpath, "./" + DOC_HANDLER, documentTypeNode)) {
 553  0
                 documentType.setUnresolvedDocHandlerUrl((String) getXPath().evaluate("./" + DOC_HANDLER, documentTypeNode, XPathConstants.STRING));
 554  
             }
 555  0
         } catch (XPathExpressionException xpee) {
 556  0
             LOG.error("Error obtaining document type docHandler", xpee);
 557  0
             throw xpee;
 558  0
         }
 559  
 
 560  
         // set the help definition URL on the document type
 561  0
         String helpDefUrl = null;
 562  
         try {
 563  0
             helpDefUrl = (String) getXPath().evaluate("./" + HELP_DEFINITION_URL, documentTypeNode, XPathConstants.STRING);
 564  0
         } catch (XPathExpressionException xpee) {
 565  0
             LOG.error("Error obtaining document type help definition url", xpee);
 566  0
             throw xpee;
 567  0
         }
 568  
         // if the ingestion has produced a valid value then set it on the document
 569  0
         if (StringUtils.isNotBlank(helpDefUrl)) {
 570  0
             documentType.setUnresolvedHelpDefinitionUrl(helpDefUrl);
 571  
         }
 572  
         // at this point we know the ingested value is blank
 573  0
         else if (!isOverwrite) {
 574  
             // if this is not an overwrite, we need to check the previous document type version for a value to pull forward
 575  0
             if ( (ObjectUtils.isNotNull(previousDocumentType)) && (StringUtils.isNotBlank(previousDocumentType.getUnresolvedHelpDefinitionUrl())) ) {
 576  
                 // keep the same value from the previous version of the document type from the database
 577  0
                 helpDefUrl = previousDocumentType.getUnresolvedHelpDefinitionUrl();
 578  
             }
 579  0
             documentType.setUnresolvedHelpDefinitionUrl(helpDefUrl);
 580  
         }
 581  
         
 582  
         // set the doc search help URL on the document type
 583  0
         String docSearchHelpUrl = null;
 584  
         try {
 585  0
             docSearchHelpUrl = (String) getXPath().evaluate("./" + DOC_SEARCH_HELP_URL, documentTypeNode, XPathConstants.STRING);
 586  0
         } catch (XPathExpressionException xpee) {
 587  0
             LOG.error("Error obtaining document type document search help url", xpee);
 588  0
             throw xpee;
 589  0
         }
 590  
         // if the ingestion has produced a valid value then set it on the document
 591  0
         if (StringUtils.isNotBlank(docSearchHelpUrl)) {
 592  0
             documentType.setUnresolvedDocSearchHelpUrl(docSearchHelpUrl);
 593  
         }
 594  
         // at this point we know the ingested value is blank
 595  0
         else if (!isOverwrite) {
 596  
             // if this is not an overwrite, we need to check the previous document type version for a value to pull forward
 597  0
             if ( (ObjectUtils.isNotNull(previousDocumentType)) && (StringUtils.isNotBlank(previousDocumentType.getUnresolvedDocSearchHelpUrl())) ) {
 598  
                 // keep the same value from the previous version of the document type from the database
 599  0
                 docSearchHelpUrl = previousDocumentType.getUnresolvedDocSearchHelpUrl();
 600  
             }
 601  0
             documentType.setUnresolvedDocSearchHelpUrl(docSearchHelpUrl);
 602  
         }
 603  
 
 604  
         // set the service namespace on the document type
 605  
         try {
 606  
             /*
 607  
              * - if the element tag is ingested... take whatever value is given, even if it's empty 
 608  
              * - we disregard the isOverwrite because if the element tag does not exist in the ingestion
 609  
              * then the documentType should already carry the value from the previous document type
 610  
              */
 611  0
             if (XmlHelper.pathExists(xpath, "./" + SERVICE_NAMESPACE, documentTypeNode)) {
 612  0
                 documentType.setActualServiceNamespace((String) getXPath().evaluate("./" + SERVICE_NAMESPACE, documentTypeNode, XPathConstants.STRING));
 613  
             }
 614  0
         } catch (XPathExpressionException xpee) {
 615  0
             LOG.error("Error obtaining document type ServiceNamespace", xpee);
 616  0
             throw xpee;
 617  0
         }
 618  
 
 619  
         // set the notification from address on the document type
 620  
         try {
 621  
             /*
 622  
              * - if the element tag is ingested... take whatever value is given, even if it's empty 
 623  
              * - we disregard the isOverwrite because if the element tag does not exist in the ingestion
 624  
              * then the documentType should already carry the value from the previous document type
 625  
              */
 626  0
             if (XmlHelper.pathExists(xpath, "./" + NOTIFICATION_FROM_ADDRESS, documentTypeNode)) {
 627  0
                 documentType.setActualNotificationFromAddress((String) getXPath().evaluate("./" + NOTIFICATION_FROM_ADDRESS, documentTypeNode, XPathConstants.STRING));
 628  
             }
 629  0
         } catch (XPathExpressionException xpee) {
 630  0
             LOG.error("Error obtaining document type " + NOTIFICATION_FROM_ADDRESS, xpee);
 631  0
             throw xpee;
 632  0
         }
 633  
 
 634  
         try {
 635  
             /*
 636  
              * - if the element tag is ingested... take whatever value is given, even if it's empty 
 637  
              * - we disregard the isOverwrite because if the element tag does not exist in the ingestion
 638  
              * then the documentType should already carry the value from the previous document type
 639  
              */
 640  0
             if (XmlHelper.pathExists(xpath, "./" + CUSTOM_EMAIL_STYLESHEET, documentTypeNode)) {
 641  0
                 documentType.setCustomEmailStylesheet((String) getXPath().evaluate("./" + CUSTOM_EMAIL_STYLESHEET, documentTypeNode, XPathConstants.STRING));
 642  
             }
 643  0
         } catch (XPathExpressionException xpee) {
 644  0
             LOG.error("Error obtaining document type " + CUSTOM_EMAIL_STYLESHEET, xpee);
 645  0
             throw xpee;
 646  0
         }
 647  
 
 648  
         // any ingested document type by default becomes the current document type
 649  0
         documentType.setCurrentInd(Boolean.TRUE);
 650  
 
 651  
         // set up the default exception workgroup for the document type
 652  0
         String exceptionWg = null;
 653  0
         String exceptionWgName = null;
 654  0
         String exceptionWgNamespace = null;
 655  
         try {
 656  0
                 if (XmlHelper.pathExists(xpath, "./" + DEFAULT_EXCEPTION_GROUP_NAME, documentTypeNode)) {
 657  0
                         exceptionWgName = (String) getXPath().evaluate("./" + DEFAULT_EXCEPTION_GROUP_NAME, documentTypeNode, XPathConstants.STRING);
 658  0
                         exceptionWgNamespace = (String) getXPath().evaluate("./" + DEFAULT_EXCEPTION_GROUP_NAME + "/@" + NAMESPACE, documentTypeNode, XPathConstants.STRING);
 659  0
                         exceptionWg = exceptionWgName;
 660  
                 } else {
 661  0
                         exceptionWg = (String) getXPath().evaluate("./" + DEFAULT_EXCEPTION_WORKGROUP_NAME, documentTypeNode, XPathConstants.STRING);
 662  
                 }
 663  0
         } catch (XPathExpressionException xpee) {
 664  0
             LOG.error("Error obtaining document type " + DEFAULT_EXCEPTION_GROUP_NAME, xpee);
 665  0
             throw xpee;
 666  0
         }
 667  
         // we don't need to take the isOverwrite into account here because this ingestion method is a shortcut to use the same workgroup in all route nodes
 668  0
         if (StringUtils.isNotBlank(exceptionWg)) {
 669  0
                 if (StringUtils.isNotBlank(exceptionWgName)) { // Found a "defaultExceptionGroupName" element.
 670  
                         // allow core config parameter replacement in documenttype workgroups
 671  0
                         exceptionWgName = Utilities.substituteConfigParameters(exceptionWgName).trim();
 672  0
                         exceptionWgNamespace = Utilities.substituteConfigParameters(exceptionWgNamespace).trim();
 673  
                 } else { // Found a deprecated "defaultExceptionWorkgroupName" element.
 674  0
                         LOG.warn((new StringBuilder(160)).append("Document Type XML is using deprecated element '").append(DEFAULT_EXCEPTION_WORKGROUP_NAME).append(
 675  
                                         "', please use '").append(DEFAULT_EXCEPTION_GROUP_NAME).append("' instead.").toString());
 676  
                     // allow core config parameter replacement in documenttype workgroups
 677  0
                     exceptionWg = Utilities.substituteConfigParameters(exceptionWg);
 678  0
                     exceptionWgName = Utilities.parseGroupName(exceptionWg);
 679  0
                     exceptionWgNamespace = Utilities.parseGroupNamespaceCode(exceptionWg);
 680  
                 }
 681  0
             Group exceptionGroup = getIdentityManagementService().getGroupByName(exceptionWgNamespace, exceptionWgName);
 682  0
             if(exceptionGroup == null) {
 683  0
                        throw new WorkflowRuntimeException("Exception workgroup name " + exceptionWgName + " does not exist");
 684  
             }
 685  0
             documentType.setDefaultExceptionWorkgroup(exceptionGroup);
 686  0
             defaultExceptionWorkgroup = exceptionGroup;
 687  
         }
 688  
 
 689  
         // set up the active indicator on the document type
 690  
         try {
 691  
              // if the element tag is ingested... take whatever value is given
 692  0
             if (XmlHelper.pathExists(xpath, "./" + ACTIVE, documentTypeNode)) {
 693  0
                 documentType.setActive(Boolean.valueOf((String) getXPath().evaluate("./" + ACTIVE, documentTypeNode, XPathConstants.STRING)));
 694  
             } 
 695  
             // if isOverwrite is false set the default value
 696  0
             else if (!isOverwrite) {
 697  0
                 documentType.setActive(Boolean.TRUE);
 698  
             }
 699  0
         } catch (XPathExpressionException xpee) {
 700  0
             LOG.error("Error obtaining document type active flag", xpee);
 701  0
             throw xpee;
 702  0
         }
 703  
 
 704  
         // check for a parent document type for the ingested document type
 705  0
         boolean parentElementExists = false;
 706  
         try {
 707  0
             parentElementExists = XmlHelper.pathExists(xpath, "./" + PARENT, documentTypeNode);
 708  0
         } catch (XPathExpressionException xpee) {
 709  0
             LOG.error("Error obtaining document type parent", xpee);
 710  0
             throw xpee;
 711  0
         }
 712  
         /*
 713  
          * - if the element tag is ingested... take whatever value is given 
 714  
          * - we disregard the isOverwrite because if the element tag does not exist in the ingestion
 715  
          * then the documentType should already carry the value from the previous document type
 716  
          */
 717  0
         if (parentElementExists) {
 718  
             // the tag was ingested so we'll use whatever the user attempted to set
 719  0
             String parentDocumentTypeName = null;
 720  
             try {
 721  0
                 parentDocumentTypeName = (String) getXPath().evaluate("./" + PARENT, documentTypeNode, XPathConstants.STRING);
 722  0
             } catch (XPathExpressionException xpee) {
 723  0
                 LOG.error("Error obtaining document type parent", xpee);
 724  0
                 throw xpee;
 725  0
             }
 726  0
             DocumentType parentDocumentType = KEWServiceLocator.getDocumentTypeService().findByName(parentDocumentTypeName);
 727  0
             if (parentDocumentType == null) {
 728  
                 //throw new XmlException("Invalid parent document type: '" + parentDocumentTypeName + "'");
 729  0
                 LOG.info("Parent document type '" + parentDocumentTypeName +
 730  
                         "' could not be found; attempting to delay processing of '" + documentTypeName + "'...");
 731  0
                 throw new InvalidParentDocTypeException(parentDocumentTypeName, documentTypeName,
 732  
                         "Invalid parent document type: '" + parentDocumentTypeName + "'");
 733  
             }
 734  0
             documentType.setDocTypeParentId(parentDocumentType.getDocumentTypeId());
 735  
         }
 736  
 
 737  
         // set the super user workgroup name on the document type
 738  
         try {
 739  
             /*
 740  
              * - if the element tag is ingested... take whatever value is given
 741  
              * - we disregard the isOverwrite because if the element tag does not exist in the ingestion
 742  
              * then the documentType should already carry the value from the previous document type
 743  
              */
 744  0
                 if (XmlHelper.pathExists(xpath, "./" + SUPER_USER_GROUP_NAME, documentTypeNode)) {
 745  0
                         documentType.setSuperUserWorkgroupNoInheritence(retrieveValidKimGroup("./" + SUPER_USER_GROUP_NAME, documentTypeNode, false));
 746  
                 }
 747  0
                 else if (XmlHelper.pathExists(xpath, "./" + SUPER_USER_WORKGROUP_NAME, documentTypeNode)) {
 748  0
                         LOG.warn((new StringBuilder(160)).append("Document Type XML is using deprecated element '").append(SUPER_USER_WORKGROUP_NAME).append(
 749  
                                         "', please use '").append(SUPER_USER_GROUP_NAME).append("' instead.").toString());
 750  0
                 documentType.setSuperUserWorkgroupNoInheritence(retrieveValidKimGroup("./" + SUPER_USER_WORKGROUP_NAME, documentTypeNode, true));
 751  
             }
 752  0
         } catch (XPathExpressionException xpee) {
 753  0
             LOG.error("Error obtaining document type " + SUPER_USER_GROUP_NAME, xpee);
 754  0
             throw xpee;
 755  0
         }
 756  
 
 757  
         // set the blanket approve workgroup name on the document type
 758  0
         String blanketWorkGroup = null;
 759  0
         String blanketGroupName = null;
 760  0
         String blanketNamespace = null;
 761  0
         String blanketApprovePolicy = null;
 762  
         try {
 763  
             // check if the blanket approve workgroup name element tag was set on the ingested document type and get value if it was
 764  0
                 if (XmlHelper.pathExists(xpath, "./" + BLANKET_APPROVE_GROUP_NAME, documentTypeNode)) {
 765  0
                         blanketGroupName = (String) getXPath().evaluate("./" + BLANKET_APPROVE_GROUP_NAME, documentTypeNode, XPathConstants.STRING);
 766  0
                         blanketNamespace = (String) getXPath().evaluate("./" + BLANKET_APPROVE_GROUP_NAME + "/@" + NAMESPACE, documentTypeNode, XPathConstants.STRING);
 767  0
                         blanketWorkGroup = blanketGroupName;
 768  
                 }
 769  0
                 else if (XmlHelper.pathExists(xpath, "./" + BLANKET_APPROVE_WORKGROUP_NAME, documentTypeNode)) {
 770  0
                 blanketWorkGroup = (String) getXPath().evaluate("./" + BLANKET_APPROVE_WORKGROUP_NAME, documentTypeNode, XPathConstants.STRING);
 771  
             }
 772  0
         } catch (XPathExpressionException xpee) {
 773  0
             LOG.error("Error obtaining document type " + BLANKET_APPROVE_GROUP_NAME, xpee);
 774  0
             throw xpee;
 775  0
         }
 776  
         try {
 777  
             // check if the blanket approve policy element tag was set on the ingested document type and get value if it was
 778  0
             if (XmlHelper.pathExists(xpath, "./" + BLANKET_APPROVE_POLICY, documentTypeNode)) {
 779  0
                 blanketApprovePolicy =(String) getXPath().evaluate("./" + BLANKET_APPROVE_POLICY, documentTypeNode, XPathConstants.STRING);
 780  
             }
 781  0
         } catch (XPathExpressionException xpee) {
 782  0
             LOG.error("Error obtaining document type " + BLANKET_APPROVE_POLICY, xpee);
 783  0
             throw xpee;
 784  0
         }
 785  
         // first check to see if the user ingested both a workgroup name and a policy
 786  0
         if (StringUtils.isNotBlank(blanketWorkGroup) && StringUtils.isNotBlank(blanketApprovePolicy)) {
 787  0
             throw new XmlException("Only one of the blanket approve xml tags can be set");
 788  
         }
 789  0
         else if (StringUtils.isNotBlank(blanketWorkGroup)) {
 790  0
             if (isOverwrite) {
 791  
                 // if overwrite mode is on we need to make sure we clear out the blanket approve policy in case that was the previous document type's method
 792  0
                 documentType.setBlanketApprovePolicy(null);
 793  
             }
 794  0
             if (StringUtils.isNotBlank(blanketGroupName)) { // Found a "blanketApproveGroupName" element.
 795  0
                     documentType.setBlanketApproveWorkgroup(retrieveValidKimGroupUsingGroupNameAndNamespace(blanketGroupName, blanketNamespace));
 796  
             } else { // Found a deprecated "blanketApproveWorkgroupName" element.
 797  0
                     LOG.warn((new StringBuilder(160)).append("Document Type XML is using deprecated element '").append(BLANKET_APPROVE_WORKGROUP_NAME).append(
 798  
                                         "', please use '").append(BLANKET_APPROVE_GROUP_NAME).append("' instead.").toString());
 799  0
                     documentType.setBlanketApproveWorkgroup(retrieveValidKimGroupUsingUnparsedGroupName(blanketWorkGroup));
 800  
             }
 801  
         }
 802  0
         else if (StringUtils.isNotBlank(blanketApprovePolicy)) {
 803  0
             if (isOverwrite) {
 804  
                 // if overwrite mode is on we need to make sure we clear out the blanket approve workgroup in case that was the previous document type's method
 805  0
                 documentType.setBlanketApproveWorkgroup(null);
 806  
             }
 807  0
             documentType.setBlanketApprovePolicy(blanketApprovePolicy);
 808  
         }
 809  
 
 810  
         // set the reporting workgroup name on the document type
 811  
         try {
 812  0
                 if (XmlHelper.pathExists(xpath, "./" + REPORTING_GROUP_NAME, documentTypeNode)) {
 813  0
                         documentType.setReportingWorkgroup(retrieveValidKimGroup("./" + REPORTING_GROUP_NAME, documentTypeNode, false));
 814  
                 }
 815  0
                 else if (XmlHelper.pathExists(xpath, "./" + REPORTING_WORKGROUP_NAME, documentTypeNode)) {
 816  0
                         LOG.warn((new StringBuilder(160)).append("Document Type XML is using deprecated element '").append(REPORTING_WORKGROUP_NAME).append(
 817  
                                         "', please use '").append(REPORTING_GROUP_NAME).append("' instead.").toString());
 818  0
                 documentType.setReportingWorkgroup(retrieveValidKimGroup("./" + REPORTING_WORKGROUP_NAME, documentTypeNode, true));
 819  
             }
 820  0
         } catch (XPathExpressionException xpee) {
 821  0
             LOG.error("Error obtaining document type " + REPORTING_GROUP_NAME, xpee);
 822  0
             throw xpee;
 823  0
         }
 824  
 
 825  
         // set the routing version on the document type
 826  
         try {
 827  
             /*
 828  
              * - if the element tag is ingested... take whatever value is given 
 829  
              * - we disregard the isOverwrite because if the element tag does not exist in the ingestion
 830  
              * then the documentType should already carry the value from the previous document type
 831  
              */
 832  0
             if (XmlHelper.pathExists(xpath, "./" + ROUTING_VERSION, documentTypeNode)) {
 833  
                 String version;
 834  
                 try {
 835  0
                     version = (String) getXPath().evaluate("./" + ROUTING_VERSION, documentTypeNode, XPathConstants.STRING);
 836  0
                 } catch (XPathExpressionException xpee) {
 837  0
                     LOG.error("Error obtaining document type routingVersion", xpee);
 838  0
                     throw xpee;
 839  0
                 }
 840  
                 // verify that the routing version is one of the two valid values
 841  0
                 if (!(version.equals(KEWConstants.ROUTING_VERSION_ROUTE_LEVEL) || version.equals(KEWConstants.ROUTING_VERSION_NODAL))) {
 842  0
                     throw new WorkflowRuntimeException("Invalid routing version on document type: " + version);
 843  
                 }
 844  0
                 documentType.setRoutingVersion(version);
 845  
             }
 846  0
         } catch (XPathExpressionException xpee) {
 847  0
             LOG.error("Error obtaining document type routingVersion", xpee);
 848  0
             throw xpee;
 849  0
         }
 850  
 
 851  
         // set the valid application document statuses for the document type
 852  
         /*
 853  
          * The following code does not need to apply the isOverwrite mode logic because it already checks to see if each node
 854  
          * is available on the ingested XML. If the node is ingested then it doesn't matter if we're in overwrite mode or not
 855  
          * the ingested code should save.
 856  
          */
 857  0
         NodeList appDocStatusList = (NodeList) getXPath().evaluate("./" + APP_DOC_STATUSES, documentTypeNode, XPathConstants.NODESET);
 858  0
         if (appDocStatusList.getLength() > 1) {
 859  
             // more than one <validDocumentStatuses> tag is invalid
 860  0
             throw new XmlException("More than one " + APP_DOC_STATUSES + " node is present in a document type node");
 861  
         }
 862  0
         else if (appDocStatusList.getLength() > 0) {
 863  
             // if there is exactly one <validDocumentStatuses> tag then parse it and use the values
 864  
 //                NodeList statusNodes = appDocStatusList.item(0).getChildNodes();
 865  0
             NodeList statusNodes = (NodeList) getXPath().evaluate("./" + STATUS, appDocStatusList.item(0), XPathConstants.NODESET);
 866  0
             documentType.setValidApplicationStatuses(getDocumentTypeStatuses(statusNodes, documentType));
 867  
         }
 868  
         
 869  
         
 870  0
         return documentType;
 871  
     }
 872  
 
 873  
     private Group retrieveValidKimGroup(String xpathExpression, Node documentTypeNode, boolean deprecatedGroupElement) throws XPathExpressionException, GroupNotFoundException {
 874  
         String groupName;
 875  0
         String groupNamespace = null;
 876  
         try {
 877  0
             groupName = (String) getXPath().evaluate(xpathExpression, documentTypeNode, XPathConstants.STRING);
 878  
             // If not using the deprecated "namespaceCode:GroupName" format for group names, obtain the namespace from the element's "namespace" attribute.
 879  0
             if (!deprecatedGroupElement) {
 880  0
                     groupNamespace = (String) getXPath().evaluate(xpathExpression + "/@" + NAMESPACE, documentTypeNode, XPathConstants.STRING);
 881  
             }
 882  0
         } catch (XPathExpressionException xpee) {
 883  0
             LOG.error("Error obtaining document type workgroup using xpath expression: " + xpathExpression, xpee);
 884  0
             throw xpee;
 885  0
         }
 886  
         // Use the appropriate method to retrieve the group, based on whether or not the deprecated "namespaceCode:groupName" naming pattern is in use. 
 887  0
         return (deprecatedGroupElement) ?
 888  
                         retrieveValidKimGroupUsingUnparsedGroupName(groupName) : retrieveValidKimGroupUsingGroupNameAndNamespace(groupName, groupNamespace);
 889  
     }
 890  
 
 891  
     private Group retrieveValidKimGroupUsingGroupNameAndNamespace(String groupName, String groupNamespace) throws GroupNotFoundException {
 892  
             // allow core config parameter replacement in documenttype workgroups
 893  0
             groupName = Utilities.substituteConfigParameters(groupName).trim();
 894  0
             groupNamespace = Utilities.substituteConfigParameters(groupNamespace).trim();
 895  0
             return retrieveValidKimGroupUsingProcessedGroupNameAndNamespace(groupName, groupNamespace);
 896  
     }
 897  
     
 898  
     private Group retrieveValidKimGroupUsingUnparsedGroupName(String unparsedGroupName) throws GroupNotFoundException {
 899  
         // allow core config parameter replacement in documenttype workgroups
 900  0
         unparsedGroupName = Utilities.substituteConfigParameters(unparsedGroupName);
 901  0
         String groupName = Utilities.parseGroupName(unparsedGroupName);
 902  0
         String groupNamespace = Utilities.parseGroupNamespaceCode(unparsedGroupName);
 903  0
         return retrieveValidKimGroupUsingProcessedGroupNameAndNamespace(groupName, groupNamespace);
 904  
     }
 905  
 
 906  
     private Group retrieveValidKimGroupUsingProcessedGroupNameAndNamespace(String groupName, String groupNamespace) throws GroupNotFoundException {
 907  0
         Group workgroup = getIdentityManagementService().getGroupByName(groupNamespace, groupName);
 908  0
         if (workgroup == null) {
 909  0
             throw new GroupNotFoundException("Valid Workgroup could not be found... Namespace: " + groupNamespace + "  Name: " + groupName);
 910  
         }
 911  0
         return workgroup;
 912  
     }
 913  
     
 914  
     public DocumentType generateNewDocumentTypeFromExisting(String documentTypeName) throws SAXException, IOException, ParserConfigurationException, XPathExpressionException, GroupNotFoundException, WorkflowException {
 915  
         // export the document type that exists in the database
 916  0
         DocumentType docTypeFromDatabase = KEWServiceLocator.getDocumentTypeService().findByName(documentTypeName);
 917  0
         if (ObjectUtils.isNotNull(docTypeFromDatabase)) {
 918  0
             KewExportDataSet kewExportDataSet = new KewExportDataSet();
 919  0
             kewExportDataSet.getDocumentTypes().add(docTypeFromDatabase);
 920  0
             byte[] xmlBytes = CoreApiServiceLocator.getXmlExporterService().export(kewExportDataSet.createExportDataSet());
 921  
             // use the exported document type from the database to generate the new document type
 922  0
             Document tempDocument = XmlHelper.trimXml(new BufferedInputStream(new ByteArrayInputStream(xmlBytes)));
 923  0
             Node documentTypeNode = (Node) getXPath().evaluate("/" + DATA_ELEMENT + "/" + DOCUMENT_TYPES + "/" + DOCUMENT_TYPE, tempDocument, XPathConstants.NODE);
 924  0
             return getFullDocumentType(false, documentTypeNode);
 925  
         }
 926  0
         return null;
 927  
     }
 928  
 
 929  
     private void routeDocumentType(DocumentType documentType) {
 930  0
         DocumentType docType = KEWServiceLocator.getDocumentTypeService().findByName(documentType.getName());
 931  
         // if the docType exists then check locking
 932  0
         if (ObjectUtils.isNotNull(docType)) {
 933  0
             Maintainable docTypeMaintainable = new DocumentTypeMaintainable();
 934  0
             docTypeMaintainable.setBusinessObject(docType);
 935  0
             docTypeMaintainable.setBoClass(docType.getClass());
 936  
             // below will throw a ValidationException if a valid locking document exists
 937  0
             MaintenanceUtils.checkForLockingDocument(docTypeMaintainable, true);
 938  
         }
 939  0
         KEWServiceLocator.getDocumentTypeService().versionAndSave(documentType);
 940  0
     }
 941  
 
 942  
     private String getDocumentTypeNameFromNode(Node documentTypeNode) throws XPathExpressionException {
 943  
         try {
 944  0
             return (String) getXPath().evaluate("./name", documentTypeNode, XPathConstants.STRING);
 945  0
         } catch (XPathExpressionException xpee) {
 946  0
             LOG.error("Error obtaining document type name", xpee);
 947  0
             throw xpee;
 948  
         }
 949  
     }
 950  
 
 951  
     /**
 952  
      * Checks for route nodes that are declared but never used and throws an XmlException if one is discovered.
 953  
      */
 954  
     private void checkForOrphanedRouteNodes(Node documentTypeNode, Node routeNodesNode) throws XPathExpressionException, XmlException {
 955  0
         NodeList nodesInPath = (NodeList) getXPath().evaluate("./routePaths/routePath//*/@name", documentTypeNode, XPathConstants.NODESET);
 956  0
         List<String> nodeNamesInPath = new ArrayList<String>(nodesInPath.getLength());
 957  0
         for (int index = 0; index < nodesInPath.getLength(); index++) {
 958  0
             Node nameNode = nodesInPath.item(index);
 959  0
             nodeNamesInPath.add(nameNode.getNodeValue());
 960  
         }
 961  
 
 962  0
         NodeList declaredNodes = (NodeList) getXPath().evaluate("./*/@name", routeNodesNode, XPathConstants.NODESET);
 963  0
         List<String> declaredNodeNames = new ArrayList<String>(declaredNodes.getLength());
 964  0
         for (int index = 0; index < declaredNodes.getLength(); index++) {
 965  0
             Node nameNode = declaredNodes.item(index);
 966  0
             declaredNodeNames.add(nameNode.getNodeValue());
 967  
         }
 968  
 
 969  
         // now compare the declared nodes to the ones actually used
 970  0
         List<String> orphanedNodes = new ArrayList<String>();
 971  0
         for (String declaredNode : declaredNodeNames) {
 972  0
             boolean foundNode = false;
 973  0
             for (String nodeInPath : nodeNamesInPath) {
 974  0
                 if (nodeInPath.equals(declaredNode)) {
 975  0
                     foundNode = true;
 976  0
                     break;
 977  
                 }
 978  
             }
 979  0
             if (!foundNode) {
 980  0
                 orphanedNodes.add(declaredNode);
 981  
             }
 982  0
         }
 983  0
         if (!orphanedNodes.isEmpty()) {
 984  0
             String message = "The following nodes were declared but never used: ";
 985  0
             for (Iterator iterator = orphanedNodes.iterator(); iterator.hasNext();) {
 986  0
                 String orphanedNode = (String) iterator.next();
 987  0
                 message += orphanedNode + (iterator.hasNext() ? ", " : "");
 988  0
             }
 989  0
             throw new XmlException(message);
 990  
         }
 991  0
     }
 992  
 
 993  
     private void createProcesses(NodeList processNodes, DocumentType documentType) {
 994  0
         for (int index = 0; index < processNodes.getLength(); index++) {
 995  0
             Node processNode = processNodes.item(index);
 996  0
             NamedNodeMap attributes = processNode.getAttributes();
 997  0
             Node processNameNode = attributes.getNamedItem(PROCESS_NAME);
 998  0
             String processName = (processNameNode == null ? null : processNameNode.getNodeValue());
 999  0
             Process process = new Process();
 1000  0
             if (org.apache.commons.lang.StringUtils.isEmpty(processName)) {
 1001  0
                 process.setInitial(true);
 1002  0
                 process.setName(KEWConstants.PRIMARY_PROCESS_NAME);
 1003  
             } else {
 1004  0
                 process.setInitial(false);
 1005  0
                 process.setName(processName);
 1006  
             }
 1007  0
             process.setDocumentType(documentType);
 1008  0
             documentType.addProcess(process);
 1009  
         }
 1010  0
     }
 1011  
     
 1012  
     private void createEmptyProcess(DocumentType documentType) {
 1013  0
             Process process = new Process();
 1014  
             
 1015  0
             process.setInitial(true);
 1016  0
             process.setName(KEWConstants.PRIMARY_PROCESS_NAME);
 1017  
 
 1018  0
             process.setDocumentType(documentType);
 1019  0
             documentType.addProcess(process);
 1020  0
     }
 1021  
 
 1022  
     private RouteNode createRouteNode(RouteNode previousRouteNode, String nodeName, Node routePathNode, Node routeNodesNode, DocumentType documentType, RoutePathContext context) throws XPathExpressionException, XmlException, GroupNotFoundException {
 1023  0
         if (nodeName == null) return null;
 1024  
 
 1025  
         Node currentNode;
 1026  
         try {
 1027  0
             currentNode = (Node) getXPath().evaluate(".//*[@name = '" + nodeName + "']", routePathNode, XPathConstants.NODE);
 1028  0
         } catch (XPathExpressionException xpee) {
 1029  0
             LOG.error("Error obtaining routePath for routeNode", xpee);
 1030  0
             throw xpee;
 1031  0
         }
 1032  0
         if (currentNode == null) {
 1033  0
             String message = "Next node '" + nodeName + "' for node '" + previousRouteNode.getRouteNodeName() + "' not found!";
 1034  0
             LOG.error(message);
 1035  0
             throw new XmlException(message);
 1036  
         }
 1037  
         boolean nodeIsABranch;
 1038  
         try {
 1039  0
             nodeIsABranch = ((Boolean) getXPath().evaluate("self::node()[local-name() = 'branch']", currentNode, XPathConstants.BOOLEAN)).booleanValue();
 1040  0
         } catch (XPathExpressionException xpee) {
 1041  0
             LOG.error("Error testing whether node is a branch", xpee);
 1042  0
             throw xpee;
 1043  0
         }
 1044  0
         if (nodeIsABranch) {
 1045  0
             throw new XmlException("Next node cannot be a branch node");
 1046  
         }
 1047  
 
 1048  
         String localName;
 1049  
         try {
 1050  0
             localName = (String) getXPath().evaluate("local-name(.)", currentNode, XPathConstants.STRING);
 1051  0
         } catch (XPathExpressionException xpee) {
 1052  0
             LOG.error("Error obtaining node local-name", xpee);
 1053  0
             throw xpee;
 1054  0
         }
 1055  0
         RouteNode currentRouteNode = null;
 1056  0
         if (nodesMap.containsKey(nodeName)) {
 1057  0
             currentRouteNode = (RouteNode) nodesMap.get(nodeName);
 1058  
         } else {
 1059  0
             String nodeExpression = ".//*[@name='" + nodeName + "']";
 1060  0
             currentRouteNode = makeRouteNodePrototype(localName, nodeName, nodeExpression, routeNodesNode, documentType, context);
 1061  
         }
 1062  
 
 1063  0
         if ("split".equalsIgnoreCase(localName)) {
 1064  0
             getSplitNextNodes(currentNode, routePathNode, currentRouteNode, routeNodesNode, documentType, context);
 1065  
         }
 1066  
 
 1067  0
         if (previousRouteNode != null) {
 1068  0
             previousRouteNode.getNextNodes().add(currentRouteNode);
 1069  0
             nodesMap.put(previousRouteNode.getRouteNodeName(), previousRouteNode);
 1070  0
             currentRouteNode.getPreviousNodes().add(previousRouteNode);
 1071  
         }
 1072  
 
 1073  0
         String nextNodeName = null;
 1074  
         boolean hasNextNodeAttrib;
 1075  
         try {
 1076  0
             hasNextNodeAttrib = ((Boolean) getXPath().evaluate(NEXT_NODE_EXP, currentNode, XPathConstants.BOOLEAN)).booleanValue();
 1077  0
         } catch (XPathExpressionException xpee) {
 1078  0
             LOG.error("Error obtaining node nextNode attrib", xpee);
 1079  0
             throw xpee;
 1080  0
         }
 1081  0
         if (hasNextNodeAttrib) {
 1082  
             // if the node has a nextNode but is not a split node, the nextNode is used for its node
 1083  0
             if (!"split".equalsIgnoreCase(localName)) {
 1084  
                 try {
 1085  0
                     nextNodeName = (String) getXPath().evaluate(NEXT_NODE_EXP, currentNode, XPathConstants.STRING);
 1086  0
                 } catch (XPathExpressionException xpee) {
 1087  0
                     LOG.error("Error obtaining node nextNode attrib", xpee);
 1088  0
                     throw xpee;
 1089  0
                 }
 1090  0
                 createRouteNode(currentRouteNode, nextNodeName, routePathNode, routeNodesNode, documentType, context);
 1091  
             } else {
 1092  
                 // if the node has a nextNode but is a split node, the nextNode must be used for that split node's join node
 1093  0
                 nodesMap.put(currentRouteNode.getRouteNodeName(), currentRouteNode);
 1094  
             }
 1095  
         } else {
 1096  
             // if the node has no nextNode of its own and is not a join which gets its nextNode from its parent split node
 1097  0
             if (!"join".equalsIgnoreCase(localName)) {
 1098  0
                 nodesMap.put(currentRouteNode.getRouteNodeName(), currentRouteNode);
 1099  
                 // if join has a parent nextNode (on its split node) and join has not already walked this path
 1100  
             } else {
 1101  
                 boolean parentHasNextNodeAttrib;
 1102  
                 try {
 1103  0
                     parentHasNextNodeAttrib = ((Boolean) getXPath().evaluate(PARENT_NEXT_NODE_EXP, currentNode, XPathConstants.BOOLEAN)).booleanValue();
 1104  0
                 } catch (XPathExpressionException xpee) {
 1105  0
                     LOG.error("Error obtaining parent node nextNode attrib", xpee);
 1106  0
                     throw xpee;
 1107  0
                 }
 1108  0
                 if (parentHasNextNodeAttrib && !nodesMap.containsKey(nodeName)) {
 1109  
                     try {
 1110  0
                         nextNodeName = (String) getXPath().evaluate(PARENT_NEXT_NODE_EXP, currentNode, XPathConstants.STRING);
 1111  0
                     } catch (XPathExpressionException xpee) {
 1112  0
                         LOG.error("Error obtaining parent node nextNode attrib", xpee);
 1113  0
                         throw xpee;
 1114  0
                     }
 1115  0
                     createRouteNode(currentRouteNode, nextNodeName, routePathNode, routeNodesNode, documentType, context);
 1116  
                 } else {
 1117  
                     // if join's parent split node does not have a nextNode
 1118  0
                     nodesMap.put(currentRouteNode.getRouteNodeName(), currentRouteNode);
 1119  
                 }
 1120  
             }
 1121  
         }
 1122  
         
 1123  
         // handle nextAppDocStatus route node attribute
 1124  0
         String nextDocStatusName = null;
 1125  
         boolean hasNextDocStatus;
 1126  
         try {
 1127  0
             hasNextDocStatus = ((Boolean) getXPath().evaluate(NEXT_DOC_STATUS_EXP, currentNode, XPathConstants.BOOLEAN)).booleanValue();
 1128  0
         } catch (XPathExpressionException xpee) {
 1129  0
             LOG.error("Error obtaining node nextAppDocStatus attrib", xpee);
 1130  0
             throw xpee;
 1131  0
         }
 1132  0
         if (hasNextDocStatus){
 1133  
                 try {
 1134  0
                         nextDocStatusName = (String) getXPath().evaluate(NEXT_DOC_STATUS_EXP, currentNode, XPathConstants.STRING);
 1135  0
                 } catch (XPathExpressionException xpee) {
 1136  0
                         LOG.error("Error obtaining node nextNode attrib", xpee);
 1137  0
                         throw xpee;
 1138  0
                 }
 1139  
                 
 1140  
                 //validate against allowable values if defined
 1141  0
                 if (documentType.getValidApplicationStatuses() != null  && documentType.getValidApplicationStatuses().size() > 0){
 1142  0
                         Iterator iter = documentType.getValidApplicationStatuses().iterator();
 1143  0
                         boolean statusValidated = false;
 1144  0
                         while (iter.hasNext())
 1145  
                         {
 1146  0
                                 ApplicationDocumentStatus myAppDocStat = (ApplicationDocumentStatus) iter.next();
 1147  0
                                 if (nextDocStatusName.compareToIgnoreCase(myAppDocStat.getStatusName()) == 0)
 1148  
                                 {
 1149  0
                                         statusValidated = true;
 1150  0
                                         break;
 1151  
                                 }
 1152  0
                         }
 1153  0
                         if (!statusValidated){
 1154  0
                                         XmlException xpee = new XmlException("AppDocStatus value " +  nextDocStatusName + " not allowable.");
 1155  0
                                         LOG.error("Error validating nextAppDocStatus name: " +  nextDocStatusName + " against acceptable values.", xpee);
 1156  0
                                         throw xpee; 
 1157  
                         }
 1158  
                 }
 1159  0
                 currentRouteNode.setNextDocStatus(nextDocStatusName);
 1160  
         }
 1161  
         
 1162  0
         return currentRouteNode;
 1163  
     }
 1164  
 
 1165  
     private void getSplitNextNodes(Node splitNode, Node routePathNode, RouteNode splitRouteNode, Node routeNodesNode, DocumentType documentType, RoutePathContext context) throws XPathExpressionException, XmlException, GroupNotFoundException {
 1166  
         NodeList splitBranchNodes;
 1167  
         try {
 1168  0
             splitBranchNodes = (NodeList) getXPath().evaluate("./branch", splitNode, XPathConstants.NODESET);
 1169  0
         } catch (XPathExpressionException xpee) {
 1170  0
             LOG.error("Error obtaining split node branch", xpee);
 1171  0
             throw xpee;
 1172  0
         }
 1173  0
         for (int i = 0; i < splitBranchNodes.getLength(); i++) {
 1174  
             String branchName;
 1175  
             try {
 1176  0
                 branchName = (String) getXPath().evaluate("./@name", splitBranchNodes.item(i), XPathConstants.STRING);
 1177  0
             } catch (XPathExpressionException xpee) {
 1178  0
                 LOG.error("Error obtaining branch name attribute", xpee);
 1179  0
                 throw xpee;
 1180  0
             }
 1181  
             String name;
 1182  
             try {
 1183  0
                 name = (String) getXPath().evaluate("./*[1]/@name", splitBranchNodes.item(i), XPathConstants.STRING);
 1184  0
             } catch (XPathExpressionException xpee) {
 1185  0
                 LOG.error("Error obtaining first split branch node name", xpee);
 1186  0
                 throw xpee;
 1187  0
             }
 1188  0
             context.branch = new BranchPrototype();
 1189  0
             context.branch.setName(branchName);
 1190  
 
 1191  0
             createRouteNode(splitRouteNode, name, routePathNode, routeNodesNode, documentType, context);
 1192  
         }
 1193  0
     }
 1194  
 
 1195  
     private RouteNode makeRouteNodePrototype(String nodeTypeName, String nodeName, String nodeExpression, Node routeNodesNode, DocumentType documentType, RoutePathContext context) throws XPathExpressionException, GroupNotFoundException, XmlException {
 1196  
         NodeList nodeList;
 1197  
         try {
 1198  0
             nodeList = (NodeList) getXPath().evaluate(nodeExpression, routeNodesNode, XPathConstants.NODESET);
 1199  0
         } catch (XPathExpressionException xpee) {
 1200  0
             LOG.error("Error evaluating node expression: '" + nodeExpression + "'");
 1201  0
             throw xpee;
 1202  0
         }
 1203  0
         if (nodeList.getLength() > 1) {
 1204  0
             throw new XmlException("More than one node under routeNodes has the same name of '" + nodeName + "'");
 1205  
         }
 1206  0
         if (nodeList.getLength() == 0) {
 1207  0
             throw new XmlException("No node definition was found with the name '" + nodeName + "'");
 1208  
         }
 1209  0
         Node node = nodeList.item(0);
 1210  
 
 1211  0
         RouteNode routeNode = new RouteNode();
 1212  
         // set fields that all route nodes of all types should have defined
 1213  0
         routeNode.setDocumentType(documentType);
 1214  0
         routeNode.setRouteNodeName((String) getXPath().evaluate("./@name", node, XPathConstants.STRING));
 1215  0
         routeNode.setContentFragment(XmlJotter.jotNode(node));
 1216  
 
 1217  0
         if (XmlHelper.pathExists(xpath, "./activationType", node)) {
 1218  0
             routeNode.setActivationType(ActivationTypeEnum.parse((String) getXPath().evaluate("./activationType", node, XPathConstants.STRING)).getCode());
 1219  
         } else {
 1220  0
             routeNode.setActivationType(DEFAULT_ACTIVATION_TYPE);
 1221  
         }
 1222  
 
 1223  0
         Group exceptionWorkgroup = defaultExceptionWorkgroup;
 1224  
 
 1225  0
         String exceptionWg = null;
 1226  0
         String exceptionWorkgroupName = null;
 1227  0
         String exceptionWorkgroupNamespace = null;
 1228  
 
 1229  0
         if (XmlHelper.pathExists(xpath, "./" + EXCEPTION_GROUP_NAME, node)) {
 1230  0
                 exceptionWorkgroupName = Utilities.substituteConfigParameters(
 1231  
                                 (String) getXPath().evaluate("./" + EXCEPTION_GROUP_NAME, node, XPathConstants.STRING)).trim();
 1232  0
                 exceptionWorkgroupNamespace = Utilities.substituteConfigParameters(
 1233  
                                 (String) getXPath().evaluate("./" + EXCEPTION_GROUP_NAME + "/@" + NAMESPACE, node, XPathConstants.STRING)).trim();
 1234  
         }
 1235  0
         if (org.apache.commons.lang.StringUtils.isEmpty(exceptionWorkgroupName) && XmlHelper.pathExists(xpath, "./" + EXCEPTION_WORKGROUP_NAME, node)) {
 1236  0
                 LOG.warn((new StringBuilder(160)).append("Document Type XML is using deprecated element '").append(EXCEPTION_WORKGROUP_NAME).append(
 1237  
                                 "', please use '").append(EXCEPTION_GROUP_NAME).append("' instead.").toString());
 1238  
                 // for backward compatibility we also need to be able to support exceptionWorkgroupName
 1239  0
                 exceptionWg = Utilities.substituteConfigParameters((String) getXPath().evaluate("./" + EXCEPTION_WORKGROUP_NAME, node, XPathConstants.STRING));
 1240  0
                 exceptionWorkgroupName = Utilities.parseGroupName(exceptionWg);
 1241  0
                 exceptionWorkgroupNamespace = Utilities.parseGroupNamespaceCode(exceptionWg);
 1242  
         }
 1243  0
         if (org.apache.commons.lang.StringUtils.isEmpty(exceptionWorkgroupName) && XmlHelper.pathExists(xpath, "./" + EXCEPTION_WORKGROUP, node)) {
 1244  0
                 LOG.warn((new StringBuilder(160)).append("Document Type XML is using deprecated element '").append(EXCEPTION_WORKGROUP).append(
 1245  
                                 "', please use '").append(EXCEPTION_GROUP_NAME).append("' instead.").toString());
 1246  
             // for backward compatibility we also need to be able to support exceptionWorkgroup
 1247  0
             exceptionWg = Utilities.substituteConfigParameters((String) getXPath().evaluate("./" + EXCEPTION_WORKGROUP, node, XPathConstants.STRING));
 1248  0
             exceptionWorkgroupName = Utilities.parseGroupName(exceptionWg);
 1249  0
             exceptionWorkgroupNamespace = Utilities.parseGroupNamespaceCode(exceptionWg);
 1250  
         }
 1251  0
         if (org.apache.commons.lang.StringUtils.isEmpty(exceptionWorkgroupName)) {
 1252  0
             if (routeNode.getDocumentType().getDefaultExceptionWorkgroup() != null) {
 1253  0
                 exceptionWorkgroupName = routeNode.getDocumentType().getDefaultExceptionWorkgroup().getGroupName();
 1254  0
                 exceptionWorkgroupNamespace = routeNode.getDocumentType().getDefaultExceptionWorkgroup().getNamespaceCode();
 1255  
             }
 1256  
         }
 1257  0
         if (!org.apache.commons.lang.StringUtils.isEmpty(exceptionWorkgroupName)) {
 1258  0
             exceptionWorkgroup = getIdentityManagementService().getGroupByName(exceptionWorkgroupNamespace, exceptionWorkgroupName);
 1259  0
             if (exceptionWorkgroup == null) {
 1260  0
                 throw new GroupNotFoundException("Could not locate exception workgroup with namespace '" + exceptionWorkgroupNamespace + "' and name '" + exceptionWorkgroupName + "'");
 1261  
             }
 1262  
         }
 1263  0
         if (exceptionWorkgroup != null) {
 1264  0
             routeNode.setExceptionWorkgroupName(exceptionWorkgroup.getGroupName());
 1265  0
             routeNode.setExceptionWorkgroupId(exceptionWorkgroup.getGroupId());
 1266  
         }
 1267  
 
 1268  0
         if (((Boolean) getXPath().evaluate("./mandatoryRoute", node, XPathConstants.BOOLEAN)).booleanValue()) {
 1269  0
             routeNode.setMandatoryRouteInd(Boolean.valueOf((String)getXPath().evaluate("./mandatoryRoute", node, XPathConstants.STRING)));
 1270  
         } else {
 1271  0
             routeNode.setMandatoryRouteInd(Boolean.FALSE);
 1272  
         }
 1273  0
         if (((Boolean) getXPath().evaluate("./finalApproval", node, XPathConstants.BOOLEAN)).booleanValue()) {
 1274  0
             routeNode.setFinalApprovalInd(Boolean.valueOf((String)getXPath().evaluate("./finalApproval", node, XPathConstants.STRING)));
 1275  
         } else {
 1276  0
             routeNode.setFinalApprovalInd(Boolean.FALSE);
 1277  
         }
 1278  
 
 1279  
         // for every simple child element of the node, store a config parameter of the element name and text content
 1280  0
         NodeList children = node.getChildNodes();
 1281  0
         for (int i = 0; i < children.getLength(); i++) {
 1282  0
             Node n = children.item(i);
 1283  0
             if (n instanceof Element) {
 1284  0
                 Element e = (Element) n;
 1285  0
                 String name = e.getNodeName();
 1286  0
                 String content = getTextContent(e);
 1287  0
                 routeNode.getConfigParams().add(new RouteNodeConfigParam(routeNode, name, content));
 1288  
             }
 1289  
         }
 1290  
 
 1291  
         // make sure a default rule selector is set
 1292  0
         Map<String, String> cfgMap = Utilities.getKeyValueCollectionAsMap(routeNode.getConfigParams());
 1293  0
         if (!cfgMap.containsKey(RouteNode.RULE_SELECTOR_CFG_KEY)) {
 1294  0
             routeNode.getConfigParams().add(new RouteNodeConfigParam(routeNode, RouteNode.RULE_SELECTOR_CFG_KEY, FlexRM.DEFAULT_RULE_SELECTOR));
 1295  
         }
 1296  
 
 1297  0
         if (((Boolean) getXPath().evaluate("./ruleTemplate", node, XPathConstants.BOOLEAN)).booleanValue()) {
 1298  0
             String ruleTemplateName = (String) getXPath().evaluate("./ruleTemplate", node, XPathConstants.STRING);
 1299  0
             RuleTemplate ruleTemplate = KEWServiceLocator.getRuleTemplateService().findByRuleTemplateName(ruleTemplateName);
 1300  0
             if (ruleTemplate == null) {
 1301  0
                 throw new XmlException("Rule template for node '" + routeNode.getRouteNodeName() + "' not found: " + ruleTemplateName);
 1302  
             }
 1303  0
             routeNode.setRouteMethodName(ruleTemplateName);
 1304  0
             routeNode.setRouteMethodCode(KEWConstants.ROUTE_LEVEL_FLEX_RM);
 1305  0
         } else if (((Boolean) getXPath().evaluate("./routeModule", node, XPathConstants.BOOLEAN)).booleanValue()) {
 1306  0
             routeNode.setRouteMethodName((String) getXPath().evaluate("./routeModule", node, XPathConstants.STRING));
 1307  0
             routeNode.setRouteMethodCode(KEWConstants.ROUTE_LEVEL_ROUTE_MODULE);
 1308  
         }
 1309  
 
 1310  0
         String nodeType = null;
 1311  0
         if (((Boolean) getXPath().evaluate("./type", node, XPathConstants.BOOLEAN)).booleanValue()) {
 1312  0
             nodeType = (String) getXPath().evaluate("./type", node, XPathConstants.STRING);
 1313  
         } else {
 1314  0
             String localName = (String) getXPath().evaluate("local-name(.)", node, XPathConstants.STRING);
 1315  0
             if ("start".equalsIgnoreCase(localName)) {
 1316  0
                 nodeType = "org.kuali.rice.kew.engine.node.InitialNode";
 1317  0
             } else if ("split".equalsIgnoreCase(localName)) {
 1318  0
                 nodeType = "org.kuali.rice.kew.engine.node.SimpleSplitNode";
 1319  0
             } else if ("join".equalsIgnoreCase(localName)) {
 1320  0
                 nodeType = "org.kuali.rice.kew.engine.node.SimpleJoinNode";
 1321  0
             } else if ("requests".equalsIgnoreCase(localName)) {
 1322  0
                 nodeType = "org.kuali.rice.kew.engine.node.RequestsNode";
 1323  0
             } else if ("process".equalsIgnoreCase(localName)) {
 1324  0
                 nodeType = "org.kuali.rice.kew.engine.node.SimpleSubProcessNode";
 1325  0
             } else if (NodeType.ROLE.getName().equalsIgnoreCase(localName)) {
 1326  0
                 nodeType = RoleNode.class.getName();
 1327  
             }
 1328  
         }
 1329  0
         if (org.apache.commons.lang.StringUtils.isEmpty(nodeType)) {
 1330  0
             throw new XmlException("Could not determine node type for the node named '" + routeNode.getRouteNodeName() + "'");
 1331  
         }
 1332  0
         routeNode.setNodeType(nodeType);
 1333  
 
 1334  0
         String localName = (String) getXPath().evaluate("local-name(.)", node, XPathConstants.STRING);
 1335  0
         if ("split".equalsIgnoreCase(localName)) {
 1336  0
             context.splitNodeStack.addFirst(routeNode);
 1337  0
         } else if ("join".equalsIgnoreCase(localName) && context.splitNodeStack.size() != 0) {
 1338  
             // join node should have same branch prototype as split node
 1339  0
             RouteNode splitNode = (RouteNode)context.splitNodeStack.removeFirst();
 1340  0
             context.branch = splitNode.getBranch();
 1341  0
         } else if (NodeType.ROLE.getName().equalsIgnoreCase(localName)) {
 1342  0
             routeNode.setRouteMethodName(RoleRouteModule.class.getName());
 1343  0
             routeNode.setRouteMethodCode(KEWConstants.ROUTE_LEVEL_ROUTE_MODULE);
 1344  
         }
 1345  0
         routeNode.setBranch(context.branch);
 1346  
 
 1347  0
         return routeNode;
 1348  
     }
 1349  
 
 1350  
     private static String getTextContent(org.w3c.dom.Element element) {
 1351  0
                 NodeList children = element.getChildNodes();
 1352  0
                 Node node = children.item(0);
 1353  0
                 return node.getNodeValue();
 1354  
         }
 1355  
 
 1356  
     private List getDocumentTypePolicies(NodeList documentTypePolicies, DocumentType documentType) throws XPathExpressionException, XmlException {
 1357  0
         List policies = new ArrayList();
 1358  0
         Set policyNames = new HashSet();
 1359  
 
 1360  0
         for (int i = 0; i < documentTypePolicies.getLength(); i++) {
 1361  0
             DocumentTypePolicy policy = new DocumentTypePolicy();
 1362  0
             policy.setDocumentType(documentType);
 1363  
             try {
 1364  0
                 String policyName = (String) getXPath().evaluate("./name", documentTypePolicies.item(i), XPathConstants.STRING);
 1365  0
                 policy.setPolicyName(DocumentTypePolicyEnum.lookup(policyName).getName().toUpperCase());
 1366  0
             } catch (XPathExpressionException xpee) {
 1367  0
                 LOG.error("Error obtaining document type policy name", xpee);
 1368  0
                 throw xpee;
 1369  0
             }
 1370  
             try {
 1371  0
                 if (((Boolean) getXPath().evaluate("./value", documentTypePolicies.item(i), XPathConstants.BOOLEAN)).booleanValue()) {
 1372  0
                     policy.setPolicyValue(Boolean.valueOf((String) getXPath().evaluate("./value", documentTypePolicies.item(i), XPathConstants.STRING)));
 1373  
                 } else {
 1374  0
                     policy.setPolicyValue(Boolean.FALSE);
 1375  
                 }
 1376  0
             } catch (XPathExpressionException xpee) {
 1377  0
                 LOG.error("Error obtaining document type policy value", xpee);
 1378  0
                 throw xpee;
 1379  0
             }
 1380  
             try {
 1381  0
                     String policyStringValue = (String) getXPath().evaluate("./stringValue", documentTypePolicies.item(i), XPathConstants.STRING);
 1382  0
                     if (!StringUtils.isEmpty(policyStringValue)){
 1383  0
                             policy.setPolicyStringValue(policyStringValue.toUpperCase());
 1384  0
                             policy.setPolicyValue(Boolean.TRUE);
 1385  
                             // if DocumentStatusPolicy, check against allowable values
 1386  0
                             if (KEWConstants.DOCUMENT_STATUS_POLICY.equalsIgnoreCase(DocumentTypePolicyEnum.lookup(policy.getPolicyName()).getName())){
 1387  0
                                     boolean found = false;
 1388  0
                                     for (int index=0; index<KEWConstants.DOCUMENT_STATUS_POLICY_VALUES.length; index++) {
 1389  0
                                             if (KEWConstants.DOCUMENT_STATUS_POLICY_VALUES[index].equalsIgnoreCase(policyStringValue)){
 1390  0
                                                     found = true;
 1391  0
                                                     break;
 1392  
                                             }                                                    
 1393  
                                     }
 1394  0
                                     if (!found){
 1395  0
                                             throw new XmlException("Application Document Status string value: " + policyStringValue + " is invalid.");
 1396  
                                     }
 1397  0
                             }
 1398  
                             
 1399  
                     } else {
 1400  
                             //DocumentStatusPolicy requires a <stringValue> tag
 1401  0
                             if (KEWConstants.DOCUMENT_STATUS_POLICY.equalsIgnoreCase(DocumentTypePolicyEnum.lookup(policy.getPolicyName()).getName())){
 1402  0
                                     throw new XmlException("Application Document Status Policy requires a <stringValue>");
 1403  
                             }
 1404  
                     }
 1405  0
             } catch (XPathExpressionException xpee) {
 1406  0
                 LOG.error("Error obtaining document type policy string value", xpee);
 1407  0
                 throw xpee;
 1408  0
             }
 1409  
             
 1410  0
             if (!policyNames.add(policy.getPolicyName())) {
 1411  0
                 throw new XmlException("Policy '" + policy.getPolicyName() + "' has already been defined on this document");
 1412  
             } else {
 1413  0
                 policies.add(policy);
 1414  
             }
 1415  
         }
 1416  
 
 1417  0
         return policies;
 1418  
     }
 1419  
 
 1420  
     private List getDocumentTypeStatuses(NodeList documentTypeStatuses, DocumentType documentType) throws XPathExpressionException, XmlException {
 1421  0
         List statuses = new ArrayList();
 1422  0
         Set statusNames = new HashSet();
 1423  
 
 1424  0
         for (int i = 0; i < documentTypeStatuses.getLength(); i++) {
 1425  0
                 ApplicationDocumentStatus status = new ApplicationDocumentStatus();
 1426  0
                 status.setDocumentType(documentType);
 1427  0
                 Node myNode = documentTypeStatuses.item(i);  
 1428  0
                 String statusName = myNode.getFirstChild().getNodeValue();
 1429  0
                 status.setStatusName(statusName);
 1430  0
                 if (!statusNames.add(status.getStatusName())) {
 1431  0
                         throw new XmlException("Application Status '" + status.getStatusName() + "' has already been defined on this document");
 1432  
                 } else {
 1433  0
                         statuses.add(status);
 1434  
                 }      
 1435  
         }
 1436  0
         return statuses;
 1437  
     }
 1438  
 
 1439  
     private List getDocumentTypeAttributes(NodeList documentTypeAttributes, DocumentType documentType) throws XPathExpressionException, WorkflowException {
 1440  0
         List attributes = new ArrayList();
 1441  
 
 1442  0
         for (int i = 0; i < documentTypeAttributes.getLength(); i++) {
 1443  0
             DocumentTypeAttribute attribute = new DocumentTypeAttribute();
 1444  0
             attribute.setDocumentType(documentType);
 1445  
             String ruleAttributeName;
 1446  
             try {
 1447  0
                 ruleAttributeName = (String) getXPath().evaluate("./name", documentTypeAttributes.item(i), XPathConstants.STRING);
 1448  0
             } catch (XPathExpressionException xpee) {
 1449  0
                 LOG.error("Error obtaining rule attribute name", xpee);
 1450  0
                 throw xpee;
 1451  0
             }
 1452  0
             RuleAttribute ruleAttribute = KEWServiceLocator.getRuleAttributeService().findByName(ruleAttributeName);
 1453  0
             if (ruleAttribute == null) {
 1454  0
                 throw new WorkflowException("Could not find rule attribute: " + ruleAttributeName);
 1455  
             }
 1456  0
             attribute.setDocumentType(documentType);
 1457  0
             attribute.setRuleAttribute(ruleAttribute);
 1458  0
             attribute.setOrderIndex(i+1);
 1459  0
             attributes.add(attribute);
 1460  
         }
 1461  0
         return attributes;
 1462  
     }
 1463  
 
 1464  0
     private class RoutePathContext {
 1465  
         public BranchPrototype branch;
 1466  0
         public LinkedList splitNodeStack = new LinkedList();
 1467  
     }
 1468  
 
 1469  
     protected IdentityManagementService getIdentityManagementService() {
 1470  0
         return KIMServiceLocator.getIdentityManagementService();
 1471  
     }
 1472  
 
 1473  
     /**
 1474  
      * This is a helper class for indicating if an unprocessed document type node is "standard" or "routing."
 1475  
      * 
 1476  
      * @author Kuali Rice Team (rice.collab@kuali.org)
 1477  
      */
 1478  0
     private class DocTypeNode {
 1479  
         /** The Node that needs to be converted into a doc type. */
 1480  
         public final Node docNode;
 1481  
         /** A flag for indicating the document's type; true indicates "standard," false indicates "routing." */
 1482  
         public final boolean isStandard;
 1483  
         
 1484  
         /**
 1485  
          * Constructs a DocTypeNode instance containing the specified Node and flag.
 1486  
          * 
 1487  
          * @param newNode The unprocessed document type.
 1488  
          * @param newFlag An indicator of what type of document this is (true for "standard," false for "routing").
 1489  
          */
 1490  0
         public DocTypeNode(Node newNode, boolean newFlag) {
 1491  0
             docNode = newNode;
 1492  0
             isStandard = newFlag;
 1493  0
         }
 1494  
     }
 1495  
 
 1496  
 }