View Javadoc

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      private Boolean considerWorkgroupMembership = Boolean.TRUE;
33      private Boolean includeDelegations;
34      
35      public RuleReportCriteriaDTO() {}
36  
37      public String[] getActionRequestCodes() {
38          return actionRequestCodes;
39      }
40  
41      public void setActionRequestCodes(String[] actionRequestCodes) {
42          this.actionRequestCodes = actionRequestCodes;
43      }
44  
45      public Boolean isActiveIndicator() {
46          return activeIndicator;
47      }
48  
49      public void setActiveIndicator(Boolean activeIndicator) {
50          this.activeIndicator = activeIndicator;
51      }
52  
53      public Boolean isConsiderWorkgroupMembership() {
54          return considerWorkgroupMembership;
55      }
56  
57      public void setConsiderWorkgroupMembership(Boolean considerWorkgroupMembership) {
58          this.considerWorkgroupMembership = considerWorkgroupMembership;
59      }
60  
61      public String getDocumentTypeName() {
62          return documentTypeName;
63      }
64  
65      public void setDocumentTypeName(String documentTypeName) {
66          this.documentTypeName = documentTypeName;
67      }
68  
69      public Boolean isIncludeDelegations() {
70          return includeDelegations;
71      }
72  
73      public void setIncludeDelegations(Boolean includeDelegations) {
74          this.includeDelegations = includeDelegations;
75      }
76  
77      public String getResponsibleRoleName() {
78          return responsibleRoleName;
79      }
80  
81      public void setResponsibleRoleName(String responsibleRoleName) {
82          this.responsibleRoleName = responsibleRoleName;
83      }
84  
85      public String getResponsiblePrincipalId() {
86          return responsiblePrincipalId;
87      }
88  
89      public void setResponsiblePrincipalId(String responsiblePrincipalId) {
90          this.responsiblePrincipalId = responsiblePrincipalId;
91      }
92  
93  	public String getResponsibleGroupId() {
94  		return this.responsibleGroupId;
95  	}
96  
97  	public void setResponsibleGroupId(String responsibleGroupId) {
98  		this.responsibleGroupId = responsibleGroupId;
99  	}
100 
101 	public String getRuleDescription() {
102         return ruleDescription;
103     }
104 
105     public void setRuleDescription(String ruleDescription) {
106         this.ruleDescription = ruleDescription;
107     }
108 
109     public RuleExtensionDTO[] getRuleExtensionVOs() {
110         return ruleExtensionVOs;
111     }
112 
113     public void setRuleExtensionVOs(RuleExtensionDTO[] ruleExtensionVOs) {
114         this.ruleExtensionVOs = ruleExtensionVOs;
115     }
116 
117     public String getRuleTemplateName() {
118         return ruleTemplateName;
119     }
120 
121     public void setRuleTemplateName(String ruleTemplateName) {
122         this.ruleTemplateName = ruleTemplateName;
123     }
124 
125 }