Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
CustomActionListAttribute |
|
| 1.0;1 |
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.actionlist; | |
17 | ||
18 | import java.io.Serializable; | |
19 | ||
20 | import org.kuali.rice.kew.api.action.ActionItem; | |
21 | import org.kuali.rice.kew.actionlist.web.ActionListAction; | |
22 | import org.kuali.rice.kew.api.action.ActionSet; | |
23 | import org.kuali.rice.kew.api.actionlist.DisplayParameters; | |
24 | ||
25 | ||
26 | /** | |
27 | * An attribute which allows for the Action List to be customized to provide | |
28 | * Mass Actions and an internal frame for displaying a summary view of the | |
29 | * document on each row in the Action List. | |
30 | * | |
31 | * @see ActionListAction | |
32 | * @see DefaultCustomActionListAttribute | |
33 | * | |
34 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
35 | */ | |
36 | public interface CustomActionListAttribute extends Serializable { | |
37 | ||
38 | /** | |
39 | * Returns the set of legal actions for this Action List attribute. This set of actions dictates | |
40 | * which actions can be taken on the document from the ActionList. If this method returns null then | |
41 | * action invocation will not be available from the action list. | |
42 | */ | |
43 | public ActionSet getLegalActions(String principalId, ActionItem actionItem) throws Exception; | |
44 | ||
45 | /** | |
46 | * Returns the display parameters for the inline framed doc handler on the Action List. | |
47 | * If this method returns null, then a default value will be used. | |
48 | */ | |
49 | public DisplayParameters getDocHandlerDisplayParameters(String principalId, ActionItem actionItem) throws Exception; | |
50 | ||
51 | } |