1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
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 | |
} |