Coverage Report - org.kuali.rice.kew.engine.node.FYIByNetworkId
 
Classes in this File Line Coverage Branch Coverage Complexity
FYIByNetworkId
0%
0/29
0%
0/12
3.667
 
 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.engine.node;
 18  
 
 19  
 import java.util.ArrayList;
 20  
 import java.util.List;
 21  
 import java.util.ListIterator;
 22  
 
 23  
 import org.apache.log4j.Logger;
 24  
 import org.jdom.Element;
 25  
 import org.kuali.rice.kew.engine.RouteContext;
 26  
 import org.kuali.rice.kew.engine.RouteHelper;
 27  
 import org.kuali.rice.kew.exception.WorkflowServiceErrorException;
 28  
 import org.kuali.rice.kew.routeheader.DocumentContent;
 29  
 import org.kuali.rice.kew.routeheader.StandardDocumentContent;
 30  
 import org.kuali.rice.kew.rule.NetworkIdRoleAttribute;
 31  
 import org.kuali.rice.kew.service.KEWServiceLocator;
 32  
 import org.kuali.rice.kew.util.KEWConstants;
 33  
 import org.kuali.rice.kew.util.XmlHelper;
 34  
 import org.kuali.rice.kim.bo.Person;
 35  
 import org.kuali.rice.kim.service.KIMServiceLocator;
 36  
 
 37  
 
 38  
 /**
 39  
  * A node which will generate an FYI request to a network ID specified in the document content.
 40  
  *
 41  
  * @deprecated Use {@link NetworkIdRoleAttribute} instead
 42  
  *
 43  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 44  
  */
 45  0
 public class FYIByNetworkId extends RequestActivationNode {
 46  0
     private static final Logger LOG = Logger.getLogger(FYIByNetworkId.class);
 47  
 
 48  
         public SimpleResult process(RouteContext context, RouteHelper helper)
 49  
                         throws Exception {
 50  
 
 51  0
         LOG.debug("processing FYIByNetworkId simple node");
 52  0
         Long routeHeaderId = context.getDocument().getRouteHeaderId();
 53  0
         Element rootElement = getRootElement(new StandardDocumentContent(context.getDocument().getDocContent()));
 54  0
                 List fieldElements = XmlHelper.findElements(rootElement, "field");
 55  0
         ListIterator elementIter = fieldElements.listIterator();
 56  0
         while (elementIter.hasNext()) {
 57  0
                 Element field = (Element) elementIter.next();
 58  0
                 Element version = field.getParentElement();
 59  0
                 if (version.getAttribute("current").getValue().equals("true")) {
 60  0
                         LOG.debug("Looking for networkId field:  " + field.getAttributeValue("name"));
 61  0
                        if (field.getAttribute("name")!= null && field.getAttributeValue("name").equals("networkId")) {
 62  0
                             LOG.debug("Should send an FYI to netID:  " + field.getChildText("value"));
 63  0
                                if (field.getChildText("value") != null) {
 64  0
                                        Person user = KIMServiceLocator.getPersonService().getPersonByPrincipalName(field.getChildText("value"));
 65  
 
 66  
                                        //WorkflowDocument wfDoc = new WorkflowDocument(new NetworkIdVO(field.getChildText("value")), routeHeaderId);
 67  0
                                        if (!context.isSimulation()) {
 68  0
                                            KEWServiceLocator.getWorkflowDocumentService().adHocRouteDocumentToPrincipal(user.getPrincipalId(), context.getDocument(), KEWConstants.ACTION_REQUEST_FYI_REQ, null, "Notification Request", user.getPrincipalId(), "Notification Request", true, null);
 69  
                                }
 70  
                                        //wfDoc.adHocRouteDocumentToPrincipal(KEWConstants.ACTION_REQUEST_FYI_REQ, "Notification Request", new NetworkIdVO(field.getChildText("value")), "Notification Request", true);
 71  0
                                 LOG.debug("Sent FYI using the adHocRouteDocumentToPrincipal function to NetworkID:  " + user.getPrincipalName());
 72  0
                                        break;
 73  
                        }
 74  
                 }
 75  
         }
 76  0
         }
 77  0
                 return super.process(context, helper);
 78  
         }
 79  
 
 80  
 
 81  
     private static Element getRootElement(DocumentContent docContent) {
 82  0
         Element rootElement = null;
 83  
         try {
 84  0
             rootElement = XmlHelper.buildJDocument(docContent.getDocument()).getRootElement();
 85  0
         } catch (Exception e) {
 86  0
             throw new WorkflowServiceErrorException("Invalid XML submitted", new ArrayList<Object>());
 87  0
         }
 88  0
         return rootElement;
 89  
     }
 90  
 
 91  
 
 92  
         protected Object getService(String serviceName) {
 93  0
                 return KEWServiceLocator.getService(serviceName);
 94  
         }
 95  
 
 96  
 
 97  
 }