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 | |
import java.io.Serializable; |
20 | |
import java.util.Calendar; |
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
public class ActionTakenDTO implements Serializable { |
29 | |
static final long serialVersionUID = -8818100923517546091L; |
30 | |
private Long actionTakenId; |
31 | |
private Long routeHeaderId; |
32 | |
private Integer docVersion; |
33 | |
private String principalId; |
34 | |
private String delegatorPrincpalId; |
35 | |
private String delegatorGroupId; |
36 | |
private String actionTaken; |
37 | |
private Calendar actionDate; |
38 | 0 | private String annotation = null; |
39 | 0 | private ActionRequestDTO[] actionRequests = new ActionRequestDTO[0]; |
40 | |
|
41 | 0 | public ActionTakenDTO() { |
42 | 0 | } |
43 | |
|
44 | |
public ActionRequestDTO[] getActionRequests() { |
45 | 0 | return this.actionRequests; |
46 | |
} |
47 | |
|
48 | |
public void setActionRequests(ActionRequestDTO[] actionRequests) { |
49 | 0 | this.actionRequests = actionRequests; |
50 | 0 | } |
51 | |
|
52 | |
public Calendar getActionDate() { |
53 | 0 | return actionDate; |
54 | |
} |
55 | |
|
56 | |
public String getActionTaken() { |
57 | 0 | return actionTaken; |
58 | |
} |
59 | |
|
60 | |
public Long getActionTakenId() { |
61 | 0 | return actionTakenId; |
62 | |
} |
63 | |
|
64 | |
public String getAnnotation() { |
65 | 0 | return annotation; |
66 | |
} |
67 | |
|
68 | |
public Integer getDocVersion() { |
69 | 0 | return docVersion; |
70 | |
} |
71 | |
|
72 | |
public Long getRouteHeaderId() { |
73 | 0 | return routeHeaderId; |
74 | |
} |
75 | |
|
76 | |
public void setRouteHeaderId(Long routeHeaderId) { |
77 | 0 | this.routeHeaderId = routeHeaderId; |
78 | 0 | } |
79 | |
|
80 | |
public void setDocVersion(Integer docVersion) { |
81 | 0 | this.docVersion = docVersion; |
82 | 0 | } |
83 | |
|
84 | |
public void setAnnotation(String annotation) { |
85 | 0 | this.annotation = annotation; |
86 | 0 | } |
87 | |
|
88 | |
public void setActionTakenId(Long actionTakenId) { |
89 | 0 | this.actionTakenId = actionTakenId; |
90 | 0 | } |
91 | |
|
92 | |
public void setActionTaken(String actionTaken) { |
93 | 0 | this.actionTaken = actionTaken; |
94 | 0 | } |
95 | |
|
96 | |
public void setActionDate(Calendar actionDate) { |
97 | 0 | this.actionDate = actionDate; |
98 | 0 | } |
99 | |
|
100 | |
public String getPrincipalId() { |
101 | 0 | return this.principalId; |
102 | |
} |
103 | |
|
104 | |
public void setPrincipalId(String principalId) { |
105 | 0 | this.principalId = principalId; |
106 | 0 | } |
107 | |
|
108 | |
public String getDelegatorPrincpalId() { |
109 | 0 | return this.delegatorPrincpalId; |
110 | |
} |
111 | |
|
112 | |
public void setDelegatorPrincpalId(String delegatorPrincpalId) { |
113 | 0 | this.delegatorPrincpalId = delegatorPrincpalId; |
114 | 0 | } |
115 | |
|
116 | |
public String getDelegatorGroupId() { |
117 | 0 | return this.delegatorGroupId; |
118 | |
} |
119 | |
|
120 | |
public void setDelegatorGroupId(String delegatorGroupId) { |
121 | 0 | this.delegatorGroupId = delegatorGroupId; |
122 | 0 | } |
123 | |
|
124 | |
} |