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