1 /**
2 * Copyright 2005-2011 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.routemodule;
17
18 import java.util.List;
19
20 import org.kuali.rice.kew.actionrequest.ActionRequestValue;
21 import org.kuali.rice.kew.engine.RouteContext;
22 import org.kuali.rice.kew.engine.node.RouteNodeInstance;
23 import org.kuali.rice.kew.rule.FlexRM;
24
25
26 /**
27 * Adapts {@link FlexRM} to the {@link RouteModule} interface.
28 *
29 * @see FlexRM
30 * @see RouteModule
31 *
32 * @author Kuali Rice Team (rice.collab@kuali.org)
33 */
34 public class FlexRMAdapter extends FlexRM implements RouteModule {
35
36 public List<ActionRequestValue> findActionRequests(RouteContext context) throws Exception {
37 RouteNodeInstance nodeInstance = context.getNodeInstance();
38 return getActionRequests(context.getDocument(), nodeInstance, nodeInstance.getRouteNode().getRouteMethodName());
39 }
40
41 /*
42 public List<ActionRequestValue> findActionRequests(DocumentRouteHeaderValue routeHeader, RouteNodeInstance nodeInstance) throws WorkflowException {
43 return getActionRequests(routeHeader, nodeInstance, ruleTemplateName);
44 }
45
46 public List<ActionRequestValue> findActionRequests(DocumentRouteHeaderValue routeHeader) throws WorkflowException {
47 return getActionRequests(routeHeader, ruleTemplateName);
48 }*/
49
50 public String toString() {
51 return "FlexRMAdapter";
52 }
53
54 @Override
55 public boolean isMoreRequestsAvailable(RouteContext context) {
56 return false;
57 }
58
59 }