Interface IAssignmentService
public interface IAssignmentService
-
Method Summary
Modifier and TypeMethodDescriptiongetAssigneesToRequestForInformation
(Task task, Map propertyBag) Get the task assignees from whom information can be requestedgetReapprovalAssignees
(Task task, Map propertyBag, ITaskAssignee infoRequestedAssignee) Get the task assignees who will be required to reapprove the task.onAssignmentSkipped
(Task task, Map propertyBag) Get the task assignees when an assignment is skipped.onInitiation
(Task task, Map propertyBag) Get the task assignees on task initiationonOutcomeUpdated
(Task task, Map propertyBag, String updatedBy, String outcome) Get the task assignees when a user sets the outcome of the task.onReinitiation
(Task task, Map propertyBag) Get the task assignees on task reinitiation
-
Method Details
-
onInitiation
Get the task assignees on task initiation- Parameters:
task
- an Task valuepropertyBag
- a map of properties to correlate workflow to assignment rules- Returns:
- Participants The participants contains routing slip participants. The returnlist of participants will be inserted at the top of the routing slip and will be evaluated for the task assignment
-
onReinitiation
Get the task assignees on task reinitiation- Parameters:
task
- an Task valuepropertyBag
- a map of properties to correlate workflow to assignment rules- Returns:
- Participants The participants contains routing slip participants. The return list of participants will be inserted at the top of the routing slip and will be evaluated for the task assignment
-
onOutcomeUpdated
Get the task assignees when a user sets the outcome of the task. If there are no more assignees to route the task to, then this method should return an empty participants node- Parameters:
task
- an Task valuepropertyBag
- a map of properties to correlate workflow to assignment rules- Returns:
- Participants The participants contains routing slip participants. The return list of participants will be inserted at the top of the routing slip and will be evaluated for the task assignment
-
onAssignmentSkipped
Get the task assignees when an assignment is skipped. If there are no more assignees to route the task to, then this method should return an empty participants node- Parameters:
task
- an Task valuepropertyBag
- a map of properties to correlate workflow to assignment rules- Returns:
- Participants The participants contains routing slip participants. The return list of participants will be inserted at the top of the routing slip and will be evaluated for the task assignment
-
getAssigneesToRequestForInformation
Get the task assignees from whom information can be requested- Parameters:
task
- an Task valuepropertyBag
- a map of properties to correlate workflow to assignment rules- Returns:
- List A list of users to request information from
-
getReapprovalAssignees
Get the task assignees who will be required to reapprove the task. When the user requests for information from the worklist application, the user can request information with reapproval, the assignment service can specify the assignees who will be required to reapprove the task- Parameters:
task
- an Task valuepropertyBag
- a map of properties to correlate workflow to assignment rulesinfoRequestedAssignee
- The task assignee to whom information is requested- Returns:
- List A list of users who will reapprove
-