1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kim.bo.role.dto; |
17 | |
|
18 | |
import java.io.Serializable; |
19 | |
|
20 | |
|
21 | |
|
22 | |
|
23 | 0 | public class RoleResponsibilityActionInfo implements Serializable { |
24 | |
|
25 | |
protected String roleResponsibilityActionId; |
26 | |
protected String roleResponsibilityId; |
27 | |
protected String roleMemberId; |
28 | |
protected String actionTypeCode; |
29 | |
protected String actionPolicyCode; |
30 | |
protected boolean forceAction; |
31 | |
protected Integer priorityNumber; |
32 | |
|
33 | |
protected RoleResponsibilityInfo roleResponsibilityInfo; |
34 | |
|
35 | |
public String getRoleResponsibilityActionId() { |
36 | 0 | return this.roleResponsibilityActionId; |
37 | |
} |
38 | |
public void setRoleResponsibilityActionId(String roleResponsibilityResolutionId) { |
39 | 0 | this.roleResponsibilityActionId = roleResponsibilityResolutionId; |
40 | 0 | } |
41 | |
public String getRoleResponsibilityId() { |
42 | 0 | return this.roleResponsibilityId; |
43 | |
} |
44 | |
public void setRoleResponsibilityId(String roleResponsibilityId) { |
45 | 0 | this.roleResponsibilityId = roleResponsibilityId; |
46 | 0 | } |
47 | |
public String getActionTypeCode() { |
48 | 0 | return this.actionTypeCode; |
49 | |
} |
50 | |
public void setActionTypeCode(String actionTypeCode) { |
51 | 0 | this.actionTypeCode = actionTypeCode; |
52 | 0 | } |
53 | |
public Integer getPriorityNumber() { |
54 | 0 | return this.priorityNumber; |
55 | |
} |
56 | |
public void setPriorityNumber(Integer priorityNumber) { |
57 | 0 | this.priorityNumber = priorityNumber; |
58 | 0 | } |
59 | |
|
60 | |
public String getActionPolicyCode() { |
61 | 0 | return this.actionPolicyCode; |
62 | |
} |
63 | |
public void setActionPolicyCode(String actionPolicyCode) { |
64 | 0 | this.actionPolicyCode = actionPolicyCode; |
65 | 0 | } |
66 | |
public String getRoleMemberId() { |
67 | 0 | return this.roleMemberId; |
68 | |
} |
69 | |
public void setRoleMemberId(String roleMemberId) { |
70 | 0 | this.roleMemberId = roleMemberId; |
71 | 0 | } |
72 | |
public RoleResponsibilityInfo getRoleResponsibilityInfo() { |
73 | 0 | return this.roleResponsibilityInfo; |
74 | |
} |
75 | |
public void setRoleResponsibilityInfo(RoleResponsibilityInfo roleResponsibilityInfo) { |
76 | 0 | this.roleResponsibilityInfo = roleResponsibilityInfo; |
77 | 0 | } |
78 | |
|
79 | |
|
80 | |
|
81 | |
public boolean isForceAction() { |
82 | 0 | return this.forceAction; |
83 | |
} |
84 | |
|
85 | |
|
86 | |
|
87 | |
public void setForceAction(boolean forceAction) { |
88 | 0 | this.forceAction = forceAction; |
89 | 0 | } |
90 | |
} |