Clover Coverage Report - Implementation 2.0.0-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
10   87   10   1
0   51   1   10
10     1  
1    
 
  RouteHelper       Line # 43 10 0% 10 20 0% 0.0
 
No Tests
 
1    /*
2    * Copyright 2005-2008 The Kuali Foundation
3    *
4    *
5    * Licensed under the Educational Community License, Version 2.0 (the "License");
6    * you may not use this file except in compliance with the License.
7    * You may obtain a copy of the License at
8    *
9    * http://www.opensource.org/licenses/ecl2.php
10    *
11    * Unless required by applicable law or agreed to in writing, software
12    * distributed under the License is distributed on an "AS IS" BASIS,
13    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    * See the License for the specific language governing permissions and
15    * limitations under the License.
16    */
17    package org.kuali.rice.kew.engine;
18   
19    import org.kuali.rice.core.api.reflect.ObjectDefinition;
20    import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
21    import org.kuali.rice.core.api.reflect.ObjectDefinition;
22    import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
23    import org.kuali.rice.core.util.ClassLoaderUtils;
24    import org.kuali.rice.kew.engine.node.BasicJoinEngine;
25    import org.kuali.rice.kew.engine.node.DynamicNode;
26    import org.kuali.rice.kew.engine.node.JoinEngine;
27    import org.kuali.rice.kew.engine.node.JoinNode;
28    import org.kuali.rice.kew.engine.node.Node;
29    import org.kuali.rice.kew.engine.node.RequestActivationNode;
30    import org.kuali.rice.kew.engine.node.RequestsNode;
31    import org.kuali.rice.kew.engine.node.RouteNode;
32    import org.kuali.rice.kew.engine.node.SimpleNode;
33    import org.kuali.rice.kew.engine.node.SplitNode;
34    import org.kuali.rice.kew.engine.node.SubProcessNode;
35   
36   
37    /**
38    * A helper class which provides some useful utilities for examining and generating nodes.
39    * Provides access to the {@link JoinEngine} and the {@link RoutingNodeFactory}.
40    *
41    * @author Kuali Rice Team (rice.collab@kuali.org)
42    */
 
43    public class RouteHelper {
44   
45    private JoinEngine joinEngine = new BasicJoinEngine();
46    private RoutingNodeFactory nodeFactory = new RoutingNodeFactory();
47   
 
48  0 toggle public JoinEngine getJoinEngine() {
49  0 return joinEngine;
50    }
51   
 
52  0 toggle public RoutingNodeFactory getNodeFactory() {
53  0 return nodeFactory;
54    }
55   
 
56  0 toggle public boolean isSimpleNode(RouteNode routeNode) {
57  0 return ClassLoaderUtils.isInstanceOf(getNode(routeNode), SimpleNode.class);
58    }
59   
 
60  0 toggle public boolean isJoinNode(RouteNode routeNode) {
61  0 return ClassLoaderUtils.isInstanceOf(getNode(routeNode), JoinNode.class);
62    }
63   
 
64  0 toggle public boolean isSplitNode(RouteNode routeNode) {
65  0 return ClassLoaderUtils.isInstanceOf(getNode(routeNode), SplitNode.class);
66    }
67   
 
68  0 toggle public boolean isDynamicNode(RouteNode routeNode) {
69  0 return ClassLoaderUtils.isInstanceOf(getNode(routeNode), DynamicNode.class);
70    }
71   
 
72  0 toggle public boolean isSubProcessNode(RouteNode routeNode) {
73  0 return ClassLoaderUtils.isInstanceOf(getNode(routeNode), SubProcessNode.class);
74    }
75   
 
76  0 toggle public boolean isRequestActivationNode(RouteNode routeNode) {
77  0 return ClassLoaderUtils.isInstanceOf(getNode(routeNode), RequestActivationNode.class);
78    }
79   
 
80  0 toggle public boolean isRequestsNode(RouteNode routeNode) {
81  0 return getNode(routeNode) instanceof RequestsNode;
82    }
83   
 
84  0 toggle public Node getNode(RouteNode routeNode) {
85  0 return (Node) GlobalResourceLoader.getObject(new ObjectDefinition(routeNode.getNodeType(), routeNode.getDocumentType().getServiceNamespace()));
86    }
87    }