Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
InquiryPresentationControllerBase |
|
| 2.0;2 |
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.krad.uif.authorization; | |
17 | ||
18 | import java.util.Set; | |
19 | ||
20 | import org.kuali.rice.krad.uif.container.InquiryView; | |
21 | import org.kuali.rice.krad.util.KRADConstants; | |
22 | import org.kuali.rice.krad.web.form.UifFormBase; | |
23 | ||
24 | /** | |
25 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
26 | */ | |
27 | 0 | public class InquiryPresentationControllerBase extends PresentationControllerBase { |
28 | ||
29 | /** | |
30 | * Prepares a list of action flags applicable for a inquiry | |
31 | * | |
32 | * @see org.kuali.rice.krad.uif.authorization.PresentationControllerBase#getActionFlags(org.kuali.rice.krad.web.spring.form.UifFormBase) | |
33 | */ | |
34 | @Override | |
35 | public Set<String> getActionFlags(UifFormBase model) { | |
36 | ||
37 | 0 | Set<String> actionFlags = super.getActionFlags(model); |
38 | ||
39 | 0 | if (((InquiryView)model.getView()).isCanExport()){ |
40 | 0 | actionFlags.add(KRADConstants.KUALI_ACTION_CAN_EXPORT); |
41 | } | |
42 | ||
43 | 0 | return actionFlags; |
44 | } | |
45 | ||
46 | } |