Package com.ebasetech.xi.api.workflow
Interface WorkflowManagement.InteractiveTaskEnactmentDescriptor
- All Superinterfaces:
WorkflowManagement.FallibleEnactmentDescriptor
,WorkflowManagement.TaskEnactmentDescriptor
- Enclosing interface:
- WorkflowManagement
public static interface WorkflowManagement.InteractiveTaskEnactmentDescriptor extends WorkflowManagement.TaskEnactmentDescriptor
Implementations of this interface provide the detailed information needed by the tasklist
application. An instance of an implementation of this interface represents an individual
interactive task enactment of one of the nodes in a process
-
Method Summary
Modifier and Type Method Description java.lang.String
getActorId()
Answer the actor currently assigned to the task enactmentint
getAssignmentMode()
java.util.Date
getCreationDate()
Answer the time of creation of the task enactmentjava.lang.String
getIdentifier()
Answer a unique string handle for this descriptorWorkflowManagement.JobDescriptor
getJobDescriptor()
Answer the job descriptor for this taskjava.util.Date
getModificationDate()
Answer the time of most recent modification of the task enactmentjava.util.Collection
getPooledActorIds()
Retrieve the pooled actors for the task enactment, or null if no pooled actors existint
getPriority()
Answer the priority of the associated task objectMethods inherited from interface com.ebasetech.xi.api.workflow.WorkflowManagement.FallibleEnactmentDescriptor
getFailureCause, getJobSequence, getNodeEnactmentSequence, getNodeName, getProcessName, getProcessVersion, getState, getSubJobProcessName, getSubJobProcessVersion, getSubJobSequence, setFailureCause
Methods inherited from interface com.ebasetech.xi.api.workflow.WorkflowManagement.TaskEnactmentDescriptor
getDescription
-
Method Details
-
getJobDescriptor
WorkflowManagement.JobDescriptor getJobDescriptor()Answer the job descriptor for this task -
getIdentifier
java.lang.String getIdentifier()Answer a unique string handle for this descriptor- Specified by:
getIdentifier
in interfaceWorkflowManagement.FallibleEnactmentDescriptor
-
getCreationDate
java.util.Date getCreationDate()Answer the time of creation of the task enactment -
getModificationDate
java.util.Date getModificationDate()Answer the time of most recent modification of the task enactment -
getPriority
int getPriority()Answer the priority of the associated task object -
getActorId
java.lang.String getActorId()Answer the actor currently assigned to the task enactment- Returns:
- The name of the currently assigned actor, or null if there is not one
-
getPooledActorIds
java.util.Collection getPooledActorIds()Retrieve the pooled actors for the task enactment, or null if no pooled actors exist -
getAssignmentMode
int getAssignmentMode()
-