View Javadoc

1   /*
2    * Copyright 2011 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 1.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/ecl1.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.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   * Cheesy {@link TermResolver} implementation for testing purposes.
30   * 
31   * @author Kuali Rice Team (rice.collab@kuali.org)
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  };