Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
QuickLinksForm |
|
| 1.0;1 |
1 | /* | |
2 | * Copyright 2005-2008 The Kuali Foundation | |
3 | * | |
4 | * | |
5 | * Licensed under the Educational Community License, Version 2.0 (the "License"); | |
6 | * you may not use this file except in compliance with the License. | |
7 | * You may obtain a copy of the License at | |
8 | * | |
9 | * http://www.opensource.org/licenses/ecl2.php | |
10 | * | |
11 | * Unless required by applicable law or agreed to in writing, software | |
12 | * distributed under the License is distributed on an "AS IS" BASIS, | |
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
14 | * See the License for the specific language governing permissions and | |
15 | * limitations under the License. | |
16 | */ | |
17 | package org.kuali.rice.kew.quicklinks.web; | |
18 | ||
19 | import org.kuali.rice.kns.web.struts.form.KualiForm; | |
20 | ||
21 | import java.util.List; | |
22 | ||
23 | ||
24 | /** | |
25 | * Struts ActionForm for the {@link QuickLinksAction}. | |
26 | * | |
27 | * @see QuickLinksAction | |
28 | * | |
29 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
30 | */ | |
31 | 0 | public class QuickLinksForm extends KualiForm { |
32 | ||
33 | private static final long serialVersionUID = 7937908655502925150L; | |
34 | private List watchedDocuments; | |
35 | private List recentSearches; | |
36 | private List namedSearches; | |
37 | private List actionListStats; | |
38 | private List initiatedDocumentTypes; | |
39 | 0 | private String namedSearch = ""; |
40 | ||
41 | /** | |
42 | * @return Returns the actionListStats. | |
43 | */ | |
44 | public List getActionListStats() { | |
45 | 0 | return actionListStats; |
46 | } | |
47 | /** | |
48 | * @param actionListStats The actionListStats to set. | |
49 | */ | |
50 | public void setActionListStats(List actionListStats) { | |
51 | 0 | this.actionListStats = actionListStats; |
52 | 0 | } |
53 | /** | |
54 | * @return Returns the initiatedDocumentTypes. | |
55 | */ | |
56 | public List getInitiatedDocumentTypes() { | |
57 | 0 | return initiatedDocumentTypes; |
58 | } | |
59 | /** | |
60 | * @param initiatedDocumentTypes The initiatedDocumentTypes to set. | |
61 | */ | |
62 | public void setInitiatedDocumentTypes(List initiatedDocumentTypes) { | |
63 | 0 | this.initiatedDocumentTypes = initiatedDocumentTypes; |
64 | 0 | } |
65 | /** | |
66 | * @return Returns the namedSearches. | |
67 | */ | |
68 | public List getNamedSearches() { | |
69 | 0 | return namedSearches; |
70 | } | |
71 | /** | |
72 | * @param namedSearches The namedSearches to set. | |
73 | */ | |
74 | public void setNamedSearches(List namedSearches) { | |
75 | 0 | this.namedSearches = namedSearches; |
76 | 0 | } |
77 | /** | |
78 | * @return Returns the recentSearches. | |
79 | */ | |
80 | public List getRecentSearches() { | |
81 | 0 | return recentSearches; |
82 | } | |
83 | /** | |
84 | * @param recentSearches The recentSearches to set. | |
85 | */ | |
86 | public void setRecentSearches(List recentSearches) { | |
87 | 0 | this.recentSearches = recentSearches; |
88 | 0 | } |
89 | /** | |
90 | * @return Returns the watchedDocuments. | |
91 | */ | |
92 | public List getWatchedDocuments() { | |
93 | 0 | return watchedDocuments; |
94 | } | |
95 | /** | |
96 | * @param watchedDocuments The watchedDocuments to set. | |
97 | */ | |
98 | public void setWatchedDocuments(List watchedDocuments) { | |
99 | 0 | this.watchedDocuments = watchedDocuments; |
100 | 0 | } |
101 | /** | |
102 | * @return the namedSearch | |
103 | */ | |
104 | public String getNamedSearch() { | |
105 | 0 | return this.namedSearch; |
106 | } | |
107 | /** | |
108 | * @param namedSearch the namedSearch to set | |
109 | */ | |
110 | public void setNamedSearch(String namedSearch) { | |
111 | 0 | this.namedSearch = namedSearch; |
112 | 0 | } |
113 | } |