Coverage Report - org.kuali.rice.kew.actionlist.ActionListFilter
 
Classes in this File Line Coverage Branch Coverage Complexity
ActionListFilter
0%
0/84
N/A
1
 
 1  
 /*
 2  
  * Copyright 2005-2007 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.actionlist;
 18  
 
 19  
 import java.io.Serializable;
 20  
 import java.util.Date;
 21  
 
 22  
 import org.kuali.rice.kew.util.KEWConstants;
 23  
 
 24  
 
 25  
 /**
 26  
  * model for the action list filter preferences
 27  
  *
 28  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 29  
  */
 30  0
 public class ActionListFilter implements Serializable {
 31  
 
 32  
     /**
 33  
          *
 34  
          */
 35  
         private static final long serialVersionUID = -365729646389290478L;
 36  
         private String filterLegend;
 37  0
     private String documentTitle = "";
 38  
     private boolean excludeDocumentTitle;
 39  0
     private String docRouteStatus = KEWConstants.ALL_CODE;
 40  
     private boolean excludeRouteStatus;
 41  0
     private String actionRequestCd = KEWConstants.ALL_CODE;
 42  
     private boolean excludeActionRequestCd;
 43  
     private String groupId;
 44  0
     private String groupIdString = KEWConstants.NO_FILTERING;
 45  0
     private String groupName = "";
 46  
     private boolean excludeGroupId;
 47  0
     private String documentType = "";
 48  
     private boolean excludeDocumentType;
 49  
     private Date createDateFrom;
 50  
     private Date createDateTo;
 51  
     private boolean excludeCreateDate;
 52  
     private Date lastAssignedDateFrom;
 53  
     private Date lastAssignedDateTo;
 54  
     private boolean excludeLastAssignedDate;
 55  0
     private String delegatorId = "";
 56  0
     private String primaryDelegateId = "";
 57  
     private boolean excludeDelegatorId;
 58  
     private String delegationType;
 59  
     private boolean excludeDelegationType;
 60  
     private boolean filterOn;
 61  
 
 62  
     public String getActionRequestCd() {
 63  0
         return actionRequestCd;
 64  
     }
 65  
     public void setActionRequestCd(String actionRequestCd) {
 66  0
         this.actionRequestCd = actionRequestCd;
 67  0
     }
 68  
     public Date getCreateDateFrom() {
 69  0
         return createDateFrom;
 70  
     }
 71  
     public void setCreateDateFrom(Date createDate) {
 72  0
         this.createDateFrom = createDate;
 73  0
     }
 74  
     public String getDocRouteStatus() {
 75  0
         return docRouteStatus;
 76  
     }
 77  
     public void setDocRouteStatus(String docRouteStatus) {
 78  0
         this.docRouteStatus = docRouteStatus;
 79  0
     }
 80  
     public String getDocumentTitle() {
 81  0
         return documentTitle;
 82  
     }
 83  
     public void setDocumentTitle(String documentTitle) {
 84  0
         this.documentTitle = documentTitle;
 85  0
     }
 86  
     public String getDocumentType() {
 87  0
         return documentType;
 88  
     }
 89  
     public void setDocumentType(String documentType) {
 90  0
         this.documentType = documentType;
 91  0
     }
 92  
     public boolean isExcludeCreateDate() {
 93  0
         return excludeCreateDate;
 94  
     }
 95  
     public void setExcludeCreateDate(boolean excludeCreateDate) {
 96  0
         this.excludeCreateDate = excludeCreateDate;
 97  0
     }
 98  
     public boolean isExcludeDocumentType() {
 99  0
         return excludeDocumentType;
 100  
     }
 101  
     public void setExcludeDocumentType(boolean excludeDocument) {
 102  0
         this.excludeDocumentType = excludeDocument;
 103  0
     }
 104  
     public boolean isExcludeDocumentTitle() {
 105  0
         return excludeDocumentTitle;
 106  
     }
 107  
     public void setExcludeDocumentTitle(boolean excludeDocumentTitle) {
 108  0
         this.excludeDocumentTitle = excludeDocumentTitle;
 109  0
     }
 110  
     public boolean isExcludeLastAssignedDate() {
 111  0
         return excludeLastAssignedDate;
 112  
     }
 113  
     public void setExcludeLastAssignedDate(boolean excludeLastAssignedDate) {
 114  0
         this.excludeLastAssignedDate = excludeLastAssignedDate;
 115  0
     }
 116  
     public boolean isExcludeActionRequestCd() {
 117  0
         return excludeActionRequestCd;
 118  
     }
 119  
     public void setExcludeActionRequestCd(boolean excludeRequestCd) {
 120  0
         this.excludeActionRequestCd = excludeRequestCd;
 121  0
     }
 122  
     public boolean isExcludeRouteStatus() {
 123  0
         return excludeRouteStatus;
 124  
     }
 125  
     public void setExcludeRouteStatus(boolean excludeRouteStatus) {
 126  0
         this.excludeRouteStatus = excludeRouteStatus;
 127  0
     }
 128  
     public boolean isExcludeGroupId() {
 129  0
         return excludeGroupId;
 130  
     }
 131  
     public void setExcludeGroupId(boolean excludeGroupId) {
 132  0
         this.excludeGroupId = excludeGroupId;
 133  0
     }
 134  
     public Date getLastAssignedDateTo() {
 135  0
         return lastAssignedDateTo;
 136  
     }
 137  
     public void setLastAssignedDateTo(Date lastAssignedDate) {
 138  0
         this.lastAssignedDateTo = lastAssignedDate;
 139  0
     }
 140  
     public String getGroupId() {
 141  0
         return groupId;
 142  
     }
 143  
 
 144  
     public void setGroupId(String groupId) {
 145  0
         this.groupId = groupId;
 146  0
     }
 147  
 
 148  
     public Date getCreateDateTo() {
 149  0
         return createDateTo;
 150  
     }
 151  
     public void setCreateDateTo(Date createDateTo) {
 152  0
         this.createDateTo = createDateTo;
 153  0
     }
 154  
     public Date getLastAssignedDateFrom() {
 155  0
         return lastAssignedDateFrom;
 156  
     }
 157  
     public void setLastAssignedDateFrom(Date lastAssignedDateFrom) {
 158  0
         this.lastAssignedDateFrom = lastAssignedDateFrom;
 159  0
     }
 160  
     public String getDelegatorId() {
 161  0
         return delegatorId;
 162  
     }
 163  
     public void setDelegatorId(String delegatorId) {
 164  0
         this.delegatorId = delegatorId;
 165  0
     }
 166  
 
 167  
     public String getPrimaryDelegateId() {
 168  0
                 return this.primaryDelegateId;
 169  
         }
 170  
 
 171  
     public void setPrimaryDelegateId(String primaryDelegateId) {
 172  0
                 this.primaryDelegateId = primaryDelegateId;
 173  0
         }
 174  
 
 175  
     public String getGroupName() {
 176  0
         return groupName;
 177  
     }
 178  
 
 179  
     public void setGroupName(String groupName) {
 180  0
         this.groupName = groupName;
 181  0
     }
 182  
 
 183  
     public String getFilterLegend() {
 184  0
         return filterLegend;
 185  
     }
 186  
 
 187  
     public void setFilterLegend(String filterLegend) {
 188  0
         this.filterLegend = filterLegend;
 189  0
     }
 190  
 
 191  
     public String getGroupIdString() {
 192  0
         return groupIdString;
 193  
     }
 194  
 
 195  
     public void setGroupIdString(String groupIdString) {
 196  0
         this.groupIdString = groupIdString;
 197  0
     }
 198  
 
 199  
     public boolean isExcludeDelegatorId() {
 200  0
         return excludeDelegatorId;
 201  
     }
 202  
 
 203  
     public void setExcludeDelegatorId(boolean excludeDelegatorId) {
 204  0
         this.excludeDelegatorId = excludeDelegatorId;
 205  0
     }
 206  
 
 207  
     public String getDelegationType() {
 208  0
         return delegationType;
 209  
     }
 210  
 
 211  
     public void setDelegationType(String delegationType) {
 212  0
         this.delegationType = delegationType;
 213  0
     }
 214  
 
 215  
     public boolean isExcludeDelegationType() {
 216  0
         return excludeDelegationType;
 217  
     }
 218  
 
 219  
     public void setExcludeDelegationType(boolean excludeDelegationType) {
 220  0
         this.excludeDelegationType = excludeDelegationType;
 221  0
     }
 222  
 
 223  
     public boolean isFilterOn() {
 224  0
         return filterOn;
 225  
     }
 226  
 
 227  
     public void setFilterOn(boolean filterOn) {
 228  0
         this.filterOn = filterOn;
 229  0
     }
 230  
 }