| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
package org.kuali.student.lum.workflow.node; |
| 20 |
|
|
| 21 |
|
import java.util.ArrayList; |
| 22 |
|
import java.util.List; |
| 23 |
|
|
| 24 |
|
import org.kuali.rice.kew.engine.RouteContext; |
| 25 |
|
import org.kuali.rice.kew.engine.RouteHelper; |
| 26 |
|
import org.kuali.rice.kew.engine.node.SplitNode; |
| 27 |
|
import org.kuali.rice.kew.engine.node.SplitResult; |
| 28 |
|
|
| 29 |
|
|
| 30 |
|
@author |
| 31 |
|
|
| 32 |
|
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 1 |
Complexity Density: 0.33 |
|
| 33 |
|
public class MajorChangeSplitNode implements SplitNode { |
| 34 |
|
|
| 35 |
|
|
| 36 |
|
@see |
| 37 |
|
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
| 38 |
0
|
@Override... |
| 39 |
|
public SplitResult process(RouteContext context, RouteHelper helper) throws Exception { |
| 40 |
0
|
List<String> branchNames = new ArrayList<String>(); |
| 41 |
0
|
branchNames.add("True"); |
| 42 |
0
|
return new SplitResult(branchNames); |
| 43 |
|
} |
| 44 |
|
|
| 45 |
|
} |