View Javadoc
1   /**
2    * Copyright 2005-2014 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.quicklinks.web;
17  
18  import org.kuali.rice.kns.web.struts.form.KualiForm;
19  
20  import java.util.List;
21  
22  
23  /**
24   * Struts ActionForm for the {@link QuickLinksAction}.
25   *
26   * @see QuickLinksAction
27   *
28   * @author Kuali Rice Team (rice.collab@kuali.org)
29   */
30  public class QuickLinksForm extends KualiForm {
31  
32  	private static final long serialVersionUID = 7937908655502925150L;
33  	private List watchedDocuments;
34      private List recentSearches;
35      private List namedSearches;
36      private List actionListStats;
37      private List initiatedDocumentTypes;
38      private String namedSearch = "";
39  
40      /**
41       * @return Returns the actionListStats.
42       */
43      public List getActionListStats() {
44          return actionListStats;
45      }
46      /**
47       * @param actionListStats The actionListStats to set.
48       */
49      public void setActionListStats(List actionListStats) {
50          this.actionListStats = actionListStats;
51      }
52      /**
53       * @return Returns the initiatedDocumentTypes.
54       */
55      public List getInitiatedDocumentTypes() {
56          return initiatedDocumentTypes;
57      }
58      /**
59       * @param initiatedDocumentTypes The initiatedDocumentTypes to set.
60       */
61      public void setInitiatedDocumentTypes(List initiatedDocumentTypes) {
62          this.initiatedDocumentTypes = initiatedDocumentTypes;
63      }
64      /**
65       * @return Returns the namedSearches.
66       */
67      public List getNamedSearches() {
68          return namedSearches;
69      }
70      /**
71       * @param namedSearches The namedSearches to set.
72       */
73      public void setNamedSearches(List namedSearches) {
74          this.namedSearches = namedSearches;
75      }
76      /**
77       * @return Returns the recentSearches.
78       */
79      public List getRecentSearches() {
80          return recentSearches;
81      }
82      /**
83       * @param recentSearches The recentSearches to set.
84       */
85      public void setRecentSearches(List recentSearches) {
86          this.recentSearches = recentSearches;
87      }
88      /**
89       * @return Returns the watchedDocuments.
90       */
91      public List getWatchedDocuments() {
92          return watchedDocuments;
93      }
94      /**
95       * @param watchedDocuments The watchedDocuments to set.
96       */
97      public void setWatchedDocuments(List watchedDocuments) {
98          this.watchedDocuments = watchedDocuments;
99      }
100 	/**
101 	 * @return the namedSearch
102 	 */
103 	public String getNamedSearch() {
104 		return this.namedSearch;
105 	}
106 	/**
107 	 * @param namedSearch the namedSearch to set
108 	 */
109 	public void setNamedSearch(String namedSearch) {
110 		this.namedSearch = namedSearch;
111 	}
112 }