public class ProcessParticipant extends Participant
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
SYSTEM
Constant identifying the provisioning system as a participant type.
|
static java.lang.String |
SYSTEM_REQUESTER
constant that represents the 'system participant' for workflows in customlabels.properties
it is use for display in notification templates
this is NOT a participant type per se
|
static java.lang.String |
TENANT_ADMIN
Constant identifying the tenant administrator participant type
(multi-tenant deployments only).
|
static java.lang.String |
WORKFLOW_ENGINE
Constant identifying the workflow engine itself as a participant type.
|
HUMAN| Constructor and Description |
|---|
ProcessParticipant()
Default constructor.
|
ProcessParticipant(DistinguishedName dn,
java.lang.String type)
Constructs with distinguished name and type.
|
ProcessParticipant(DistinguishedName dn,
java.lang.String id,
java.lang.String type)
Constructs with distinguished name, id, and type.
|
ProcessParticipant(java.lang.String id,
java.lang.String type)
Constructs with distinguished name and type.
|
equals, getDistinguishedName, getId, getType, setDistinguishedName, setId, setType, toStringpublic static final java.lang.String WORKFLOW_ENGINE
public static final java.lang.String TENANT_ADMIN
public static final java.lang.String SYSTEM
public static final java.lang.String SYSTEM_REQUESTER
public ProcessParticipant()
public ProcessParticipant(DistinguishedName dn, java.lang.String type)
dn - DistinguishedName of the participant.type - Type of the participant (i.e., HUMAN, WORKFLOW_ENGINE,
TENANT_ADMIN, SYSTEM).public ProcessParticipant(DistinguishedName dn, java.lang.String id, java.lang.String type)
dn - DistinguishedName of the participant.id - Identifier of the participant.type - Type of the participant (i.e., HUMAN).public ProcessParticipant(java.lang.String id,
java.lang.String type)
id - Identifier of the participant.type - Type of the participant (i.e., HUMAN).