1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krms.framework;
17
18 import java.util.Arrays;
19 import java.util.Collections;
20 import java.util.HashSet;
21 import java.util.Map;
22 import java.util.Set;
23
24 import org.apache.commons.lang.ArrayUtils;
25 import org.kuali.rice.krms.api.engine.TermResolver;
26 import org.kuali.rice.krms.api.engine.TermSpecification;
27
28
29
30
31
32
33
34 public class TermResolverMock<T> implements TermResolver<T> {
35
36 private T result;
37 private TermSpecification outputTermSpec;
38 private Set<String> params;
39
40 public TermResolverMock(TermSpecification outputTermSpec, T result) {
41 this(outputTermSpec, null, result);
42 }
43
44 public TermResolverMock(TermSpecification outputTerm, String [] params, T result) {
45 this.outputTermSpec = outputTerm;
46 this.result = result;
47 if (ArrayUtils.isEmpty(params)) {
48 this.params = Collections.emptySet();
49 } else {
50 this.params = Collections.unmodifiableSet(new HashSet<String>(Arrays.asList(params)));
51 }
52 }
53
54 @Override
55 public int getCost() { return 1; }
56
57 @Override
58 public TermSpecification getOutput() { return outputTermSpec; }
59
60 @Override
61 public Set<TermSpecification> getPrerequisites() { return Collections.emptySet(); }
62
63 @Override
64 public Set<String> getParameterNames() {
65 return params;
66 }
67
68 @Override
69 public T resolve(Map<TermSpecification, Object> resolvedPrereqs, Map<String, String> parameters) {
70 return result;
71 }
72 };