Uses of Class
com.sas.lsaf.workflow.task.UserTask
-
Packages that use UserTask Package Description com.sas.lsaf.workflow.task Service and class definitions for managing and retrieving process flow tasks and elements. -
-
Uses of UserTask in com.sas.lsaf.workflow.task
Subclasses of UserTask in com.sas.lsaf.workflow.task Modifier and Type Class Description class
UserTaskDetails
The class that represents a user task in a process flow with additional details, which includes data properties and task assignment.class
UserTaskUpdateInfo
The class that represents a user task in a process flow with attributes that can be updated.Methods in com.sas.lsaf.workflow.task that return UserTask Modifier and Type Method Description UserTask
TaskService. getCurrentUserTask(java.lang.String taskId)
Gets the user task by the specified unique identifier.Methods in com.sas.lsaf.workflow.task that return types with arguments of type UserTask Modifier and Type Method Description java.util.Set<UserTask>
TaskService. getAllCurrentUserTasks()
Gets all of the user tasks that the user is authorized to access for all active process flows.java.util.Set<UserTask>
TaskService. getCurrentUserTasks()
Gets the user tasks that are assigned to the current user and tasks for which the current user is a candidate for all active process flows.Constructors in com.sas.lsaf.workflow.task with parameters of type UserTask Constructor Description UserTaskDetails(UserTask userTask, java.util.Set<Principal> candidates, java.util.Set<DataProperty> completionProperties, java.util.Set<UserTaskAssignment> taskAssignmentHistory)
It is not intended or recommended that the consumer of this API construct these objects.UserTaskUpdateInfo(UserTask userTask, java.util.Set<Principal> candidates, java.util.Set<DataProperty> completionProperties)
Constructor.
-