| 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.util.ArrayList; |
| 20 | |
import java.util.Collections; |
| 21 | |
import java.util.List; |
| 22 | |
|
| 23 | |
import org.kuali.rice.kew.engine.RouteContext; |
| 24 | |
import org.kuali.rice.kew.identity.PrincipalId; |
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | |
|
| 31 | |
|
| 32 | |
|
| 33 | |
public class InitiatorRoleAttribute extends UnqualifiedRoleAttribute { |
| 34 | |
private static final String INITIATOR_ROLE_KEY = "INITIATOR"; |
| 35 | |
private static final String INITIATOR_ROLE_LABEL = "Initiator"; |
| 36 | |
|
| 37 | 0 | private static final Role ROLE = new Role(InitiatorRoleAttribute.class, INITIATOR_ROLE_KEY, INITIATOR_ROLE_LABEL); |
| 38 | |
private static final List<Role> ROLES; |
| 39 | |
static { |
| 40 | 0 | ArrayList<Role> roles = new ArrayList<Role>(1); |
| 41 | 0 | roles.add(ROLE); |
| 42 | 0 | ROLES = Collections.unmodifiableList(roles); |
| 43 | 0 | } |
| 44 | |
|
| 45 | |
public InitiatorRoleAttribute() { |
| 46 | 0 | super(ROLES); |
| 47 | 0 | } |
| 48 | |
|
| 49 | |
public ResolvedQualifiedRole resolveRole(RouteContext routeContext, String roleName) { |
| 50 | 0 | List members = new ArrayList(1); |
| 51 | 0 | members.add(new PrincipalId(routeContext.getDocument().getInitiatorWorkflowId())); |
| 52 | 0 | return new ResolvedQualifiedRole(INITIATOR_ROLE_LABEL, members); |
| 53 | |
} |
| 54 | |
} |