Coverage Report - org.kuali.rice.kew.quicklinks.web.QuickLinksForm
 
Classes in this File Line Coverage Branch Coverage Complexity
QuickLinksForm
0%
0/20
N/A
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 java.util.List;
 20  
 
 21  
 import org.kuali.rice.kns.web.struts.form.KualiForm;
 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  0
 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  0
     private String namedSearch = "";
 39  
 
 40  
     /**
 41  
      * @return Returns the actionListStats.
 42  
      */
 43  
     public List getActionListStats() {
 44  0
         return actionListStats;
 45  
     }
 46  
     /**
 47  
      * @param actionListStats The actionListStats to set.
 48  
      */
 49  
     public void setActionListStats(List actionListStats) {
 50  0
         this.actionListStats = actionListStats;
 51  0
     }
 52  
     /**
 53  
      * @return Returns the initiatedDocumentTypes.
 54  
      */
 55  
     public List getInitiatedDocumentTypes() {
 56  0
         return initiatedDocumentTypes;
 57  
     }
 58  
     /**
 59  
      * @param initiatedDocumentTypes The initiatedDocumentTypes to set.
 60  
      */
 61  
     public void setInitiatedDocumentTypes(List initiatedDocumentTypes) {
 62  0
         this.initiatedDocumentTypes = initiatedDocumentTypes;
 63  0
     }
 64  
     /**
 65  
      * @return Returns the namedSearches.
 66  
      */
 67  
     public List getNamedSearches() {
 68  0
         return namedSearches;
 69  
     }
 70  
     /**
 71  
      * @param namedSearches The namedSearches to set.
 72  
      */
 73  
     public void setNamedSearches(List namedSearches) {
 74  0
         this.namedSearches = namedSearches;
 75  0
     }
 76  
     /**
 77  
      * @return Returns the recentSearches.
 78  
      */
 79  
     public List getRecentSearches() {
 80  0
         return recentSearches;
 81  
     }
 82  
     /**
 83  
      * @param recentSearches The recentSearches to set.
 84  
      */
 85  
     public void setRecentSearches(List recentSearches) {
 86  0
         this.recentSearches = recentSearches;
 87  0
     }
 88  
     /**
 89  
      * @return Returns the watchedDocuments.
 90  
      */
 91  
     public List getWatchedDocuments() {
 92  0
         return watchedDocuments;
 93  
     }
 94  
     /**
 95  
      * @param watchedDocuments The watchedDocuments to set.
 96  
      */
 97  
     public void setWatchedDocuments(List watchedDocuments) {
 98  0
         this.watchedDocuments = watchedDocuments;
 99  0
     }
 100  
         /**
 101  
          * @return the namedSearch
 102  
          */
 103  
         public String getNamedSearch() {
 104  0
                 return this.namedSearch;
 105  
         }
 106  
         /**
 107  
          * @param namedSearch the namedSearch to set
 108  
          */
 109  
         public void setNamedSearch(String namedSearch) {
 110  0
                 this.namedSearch = namedSearch;
 111  0
         }
 112  
 }