Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
NotificationCustomActionListAttribute |
|
| 1.0;1 |
1 | /* | |
2 | * Copyright 2007 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.ken.kew; | |
17 | ||
18 | import org.kuali.rice.kew.actionitem.ActionItem; | |
19 | import org.kuali.rice.kew.actionlist.CustomActionListAttribute; | |
20 | import org.kuali.rice.kew.actionlist.DisplayParameters; | |
21 | import org.kuali.rice.kew.actions.ActionSet; | |
22 | import org.kuali.rice.kew.web.session.UserSession; | |
23 | ||
24 | ||
25 | /** | |
26 | * This class is our custom action list for Notifications in KEW. It's wired in as the implementation to use as part of the NotificationData.xml | |
27 | * bootstrap file for KEW. | |
28 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
29 | */ | |
30 | 0 | public class NotificationCustomActionListAttribute implements CustomActionListAttribute { |
31 | /** | |
32 | * @see org.kuali.rice.kew.actionlist.CustomActionListAttribute#getDocHandlerDisplayParameters(org.kuali.rice.kew.web.session.UserSession, org.kuali.rice.kew.actionitem.ActionItem) | |
33 | */ | |
34 | public DisplayParameters getDocHandlerDisplayParameters(UserSession userSession, ActionItem actionItem) throws Exception { | |
35 | 0 | DisplayParameters dp = new DisplayParameters(new Integer(400)); |
36 | 0 | return dp; |
37 | } | |
38 | ||
39 | /** | |
40 | * @see org.kuali.rice.kew.actionlist.CustomActionListAttribute#getLegalActions(org.kuali.rice.kew.web.session.UserSession, org.kuali.rice.kew.actionitem.ActionItem) | |
41 | */ | |
42 | public ActionSet getLegalActions(UserSession userSession,ActionItem actionItem) throws Exception { | |
43 | 0 | ActionSet as = new ActionSet(); |
44 | 0 | as.addFyi(); |
45 | 0 | return as; |
46 | } | |
47 | ||
48 | } |