1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kew.rule; |
18 | |
|
19 | |
import java.io.Serializable; |
20 | |
import java.util.ArrayList; |
21 | |
import java.util.List; |
22 | |
|
23 | |
import org.kuali.rice.kew.actionrequest.ActionRequestValue; |
24 | |
import org.kuali.rice.kew.identity.Id; |
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
public class ResolvedQualifiedRole implements Serializable { |
39 | |
|
40 | |
private static final long serialVersionUID = 5397269690550273869L; |
41 | |
|
42 | 0 | private List<Id> recipients = new ArrayList<Id>(); |
43 | |
private String qualifiedRoleLabel; |
44 | |
private String annotation; |
45 | |
|
46 | 0 | public ResolvedQualifiedRole() { |
47 | 0 | } |
48 | |
|
49 | |
public ResolvedQualifiedRole(String qualifiedRoleLabel, List<Id> recipients) { |
50 | 0 | this(qualifiedRoleLabel, recipients, ""); |
51 | 0 | } |
52 | |
|
53 | 0 | public ResolvedQualifiedRole(String qualifiedRoleLabel, List<Id> recipients, String annotation) { |
54 | 0 | this.qualifiedRoleLabel = qualifiedRoleLabel; |
55 | 0 | this.recipients = recipients; |
56 | 0 | this.annotation = annotation; |
57 | 0 | } |
58 | |
|
59 | |
public List<Id> getRecipients() { |
60 | 0 | return recipients; |
61 | |
} |
62 | |
public void setRecipients(List<Id> users) { |
63 | 0 | this.recipients = users; |
64 | 0 | } |
65 | |
public String getQualifiedRoleLabel() { |
66 | 0 | return qualifiedRoleLabel; |
67 | |
} |
68 | |
public void setQualifiedRoleLabel(String qualifiedRoleLabel) { |
69 | 0 | this.qualifiedRoleLabel = qualifiedRoleLabel; |
70 | 0 | } |
71 | |
public String getAnnotation() { |
72 | 0 | return annotation; |
73 | |
} |
74 | |
public void setAnnotation(String annotation) { |
75 | 0 | this.annotation = annotation; |
76 | 0 | } |
77 | |
|
78 | |
} |