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