View Javadoc
1   /**
2    * Copyright 2005-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.kew.server;
17  
18  import java.util.ArrayList;
19  import java.util.List;
20  
21  import org.kuali.rice.kew.engine.RouteContext;
22  import org.kuali.rice.kew.engine.RouteHelper;
23  import org.kuali.rice.kew.engine.node.SimpleSplitNode;
24  import org.kuali.rice.kew.engine.node.SplitResult;
25  
26  /**
27   * This is a description of what this class does - delyea don't forget to fill this in. 
28   * 
29   * @author Kuali Rice Team (rice.collab@kuali.org)
30   *
31   */
32  public class TestSplitNode extends SimpleSplitNode {
33  
34  	private static boolean leftBranch = true;
35  	private static boolean rightBranch = true;
36  	
37  	@Override
38  	public SplitResult process(RouteContext routeContext,
39  			RouteHelper routeHelper) throws Exception {
40  		return new SplitResult(getBranchNames());
41  	}
42  	
43  	public List<String> getBranchNames() {
44  		List<String> branchNames = new ArrayList<String>();
45  		if (isLeftBranch()) {
46  			branchNames.add("Left");
47  		}
48  		if (isRightBranch()) {
49  			branchNames.add("Right");
50  		}
51  		return branchNames;
52  	}
53  
54  	public static void setLeftBranch(boolean leftBranch) {
55  		TestSplitNode.leftBranch = leftBranch;
56  	}
57  
58  	public static boolean isLeftBranch() {
59  		return TestSplitNode.leftBranch;
60  	}
61  
62  	public static void setRightBranch(boolean rightBranch) {
63  		TestSplitNode.rightBranch = rightBranch;
64  	}
65  
66  	public static boolean isRightBranch() {
67  		return TestSplitNode.rightBranch;
68  	}  	
69  }