Coverage Report - org.kuali.rice.kew.dto.RuleReportCriteriaDTO
 
Classes in this File Line Coverage Branch Coverage Complexity
RuleReportCriteriaDTO
0%
0/35
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.dto;
 18  
 
 19  
 public class RuleReportCriteriaDTO implements java.io.Serializable {
 20  
     
 21  
     private static final long serialVersionUID = -5778071030243010078L;
 22  
 
 23  
     private String ruleDescription;
 24  
     private String documentTypeName;
 25  
     private String ruleTemplateName;
 26  
     private String[] actionRequestCodes;
 27  
     private String responsiblePrincipalId;
 28  
     private String responsibleGroupId;
 29  
     private String responsibleRoleName;
 30  
     private RuleExtensionDTO[] ruleExtensionVOs;
 31  
     private Boolean activeIndicator;
 32  0
     private Boolean considerWorkgroupMembership = Boolean.TRUE;
 33  
     private Boolean includeDelegations;
 34  
     
 35  0
     public RuleReportCriteriaDTO() {}
 36  
 
 37  
     public String[] getActionRequestCodes() {
 38  0
         return actionRequestCodes;
 39  
     }
 40  
 
 41  
     public void setActionRequestCodes(String[] actionRequestCodes) {
 42  0
         this.actionRequestCodes = actionRequestCodes;
 43  0
     }
 44  
 
 45  
     public Boolean isActiveIndicator() {
 46  0
         return activeIndicator;
 47  
     }
 48  
 
 49  
     public void setActiveIndicator(Boolean activeIndicator) {
 50  0
         this.activeIndicator = activeIndicator;
 51  0
     }
 52  
 
 53  
     public Boolean isConsiderWorkgroupMembership() {
 54  0
         return considerWorkgroupMembership;
 55  
     }
 56  
 
 57  
     public void setConsiderWorkgroupMembership(Boolean considerWorkgroupMembership) {
 58  0
         this.considerWorkgroupMembership = considerWorkgroupMembership;
 59  0
     }
 60  
 
 61  
     public String getDocumentTypeName() {
 62  0
         return documentTypeName;
 63  
     }
 64  
 
 65  
     public void setDocumentTypeName(String documentTypeName) {
 66  0
         this.documentTypeName = documentTypeName;
 67  0
     }
 68  
 
 69  
     public Boolean isIncludeDelegations() {
 70  0
         return includeDelegations;
 71  
     }
 72  
 
 73  
     public void setIncludeDelegations(Boolean includeDelegations) {
 74  0
         this.includeDelegations = includeDelegations;
 75  0
     }
 76  
 
 77  
     public String getResponsibleRoleName() {
 78  0
         return responsibleRoleName;
 79  
     }
 80  
 
 81  
     public void setResponsibleRoleName(String responsibleRoleName) {
 82  0
         this.responsibleRoleName = responsibleRoleName;
 83  0
     }
 84  
 
 85  
     public String getResponsiblePrincipalId() {
 86  0
         return responsiblePrincipalId;
 87  
     }
 88  
 
 89  
     public void setResponsiblePrincipalId(String responsiblePrincipalId) {
 90  0
         this.responsiblePrincipalId = responsiblePrincipalId;
 91  0
     }
 92  
 
 93  
         public String getResponsibleGroupId() {
 94  0
                 return this.responsibleGroupId;
 95  
         }
 96  
 
 97  
         public void setResponsibleGroupId(String responsibleGroupId) {
 98  0
                 this.responsibleGroupId = responsibleGroupId;
 99  0
         }
 100  
 
 101  
         public String getRuleDescription() {
 102  0
         return ruleDescription;
 103  
     }
 104  
 
 105  
     public void setRuleDescription(String ruleDescription) {
 106  0
         this.ruleDescription = ruleDescription;
 107  0
     }
 108  
 
 109  
     public RuleExtensionDTO[] getRuleExtensionVOs() {
 110  0
         return ruleExtensionVOs;
 111  
     }
 112  
 
 113  
     public void setRuleExtensionVOs(RuleExtensionDTO[] ruleExtensionVOs) {
 114  0
         this.ruleExtensionVOs = ruleExtensionVOs;
 115  0
     }
 116  
 
 117  
     public String getRuleTemplateName() {
 118  0
         return ruleTemplateName;
 119  
     }
 120  
 
 121  
     public void setRuleTemplateName(String ruleTemplateName) {
 122  0
         this.ruleTemplateName = ruleTemplateName;
 123  0
     }
 124  
 
 125  
 }