Uses of Class
com.uc4.api.objects.JobPlanTask
-
Packages that use JobPlanTask Package Description com.uc4.api.objects com.uc4.communication.requests com.uc4.util -
-
Uses of JobPlanTask in com.uc4.api.objects
Methods in com.uc4.api.objects that return JobPlanTask Modifier and Type Method Description JobPlanTask
JobPlanTask. copy()
Creates a copy of this task with only the properties set.JobPlanTask
JobPlanTask. copyWithTaskValues()
Creates a copy of this task, inclusive of TaskValues (Variables and PromptSets).static JobPlanTask
ObjectFactory. createExternalWorkflowTask(UC4ObjectName name, UC4ObjectName externalParent)
Creates a new external Workflow task.static JobPlanTask
ObjectFactory. createWorkflowTask(UC4ObjectName name, java.lang.String objectType)
Creates a new Workflow task.JobPlanTask
JobPlan. getEndTask()
Returns the END-task of thisJobPlan
.JobPlanTask
WorkflowIF. getEndTask()
Returns the END task of an IF.JobPlanTask
WorkflowLoop. getEndTask()
Returns the END task of this FOR EACH workflow.JobPlanTask
JobPlan. getFirstTaskByName(java.lang.String name)
Returns the first task in the JobPlan monitor which has the specified object name.JobPlanTask
JobPlan. getStartTask()
Returns the START-task of thisJobPlan
.JobPlanTask
WorkflowIF. getStartTask()
Returns the Start Task of an IF.JobPlanTask
WorkflowLoop. getStartTask()
Returns the Start Task of this FOR EACH workflow.JobPlanTask
JobPlanTaskDependency. getTask()
Returns the predecessor task.JobPlanTask
JobPlan. getTaskByUserDefinedID(java.lang.String id)
Returns a worfkflow task with the specified ID.JobPlanTask
WorkflowIF. getTaskByUserDefinedID(java.lang.String id)
Returns a worfkflow task with the specified ID.JobPlanTask
WorkflowLoop. getTaskByUserDefinedID(java.lang.String id)
Returns a worfkflow task with the specified ID.Methods in com.uc4.api.objects that return types with arguments of type JobPlanTask Modifier and Type Method Description java.util.Iterator<JobPlanTask>
WorkflowIF. falseTasksIterator()
Returns an iterator over tasks in thefalse
branch.java.util.Iterator<JobPlanTask>
WorkflowLoop. iterator()
java.util.Iterator<JobPlanTask>
JobPlanDependencies. successorIterator()
java.util.Iterator<JobPlanTask>
JobPlan. taskIterator()
Returns an iterator overJobPlanTask
.java.util.Iterator<JobPlanTask>
WorkflowIF. trueTasksIterator()
Returns an iterator over tasks in thetrue
branch.Methods in com.uc4.api.objects with parameters of type JobPlanTask Modifier and Type Method Description void
JobPlanDependencies. addDependency(JobPlanTask task)
Adds a dependency without a certain status.protected void
JobPlanDependencies. addDependency(JobPlanTask predecessor, int branchType)
Adds a dependency without a certain status.protected void
JobPlanDependencies. addDependency(JobPlanTask predecessor, int branchType, TaskState taskState)
Adds a dependency with a certain status.void
JobPlanDependencies. addDependency(JobPlanTask predecessor, TaskState when)
Adds a dependency.void
WorkflowIF. addFalse(JobPlanTask task)
Adds a task to thefalse
branch of this IF workflow.void
WorkflowIF. addFalse(JobPlanTask task, int pos)
Adds a task to thefalse
branch of this IF workflow at the specified position.void
JobPlanDependencies. addSuccessorTask(JobPlanTask task)
Adds the given task to the successor list.void
JobPlan. addTask(JobPlanTask task)
Adds a task to theJobPlan
.void
WorkflowLoop. addTask(JobPlanTask task)
Adds a task to this for each loop.void
WorkflowLoop. addTask(JobPlanTask task, int pos)
Adds a task to this ForEach loop at the specified position.void
WorkflowLoop. addTaskAndCreateDependencies(JobPlanTask task)
Adds a task to this for each loop and Recreates the dependencies.void
WorkflowLoop. addTaskAndCreateDependencies(JobPlanTask task, int pos)
Adds a task to this ForEach loop at the specified position and recreates the dependencies.void
WorkflowIF. addTrue(JobPlanTask task)
Adds a task to thetrue
branch of this IF workflow.void
WorkflowIF. addTrue(JobPlanTask task, int pos)
Adds a task to thetrue
branch of this IF workflow at the specified position.void
JobPlanTask. cloneProperties(JobPlanTask toClone)
Creates a deep copy of all task properties of the given task for this task, except the task values (prompts and variables).void
JobPlanTask. clonePropertiesAndTaskValues(JobPlanTask toClone)
Creates a deep copy of all task properties of the given task for this task, including the task values (prompts and variables).JobPlanDependencies
JobPlanDependencies. copy(JobPlanTask jobPlanTask)
Creates a deep copy of this object and all it's properties except for the predecessor and successor object lists.boolean
JobPlan. removeTask(JobPlanTask task)
Removes the specified task from theJobPlan
.boolean
WorkflowIF. removeTask(JobPlanTask task)
Removes the specified task from theWorkFLowIF
.boolean
WorkflowLoop. removeTask(JobPlanTask task)
Removes the specified task from theWorkFlowLoop
.boolean
WorkflowLoop. removeTaskAndCreateDependencies(JobPlanTask task)
Removes the specified task from theWorkFlowLoop
and recreates the dependencies.void
JobPlan. replaceTask(JobPlanTask oldTask, JobPlanTask newTask)
Replaces an existingJobPlanTask
.protected void
JobPlanTaskDependency. setTask(JobPlanTask task)
Constructors in com.uc4.api.objects with parameters of type JobPlanTask Constructor Description JobPlanTaskDependency(JobPlanTask predecessor, TaskState when)
Creates aJobPlanTaskDependency
using the specified predecessor and when-condition. -
Uses of JobPlanTask in com.uc4.communication.requests
Methods in com.uc4.communication.requests that return JobPlanTask Modifier and Type Method Description JobPlanTask
AddJobPlanTask. getJobPlanTask()
Returns a JobPlan Task ornull
if the task was not found.Constructors in com.uc4.communication.requests with parameters of type JobPlanTask Constructor Description ModifyProcessFlowMonitor(JobPlanMonitor monitor, JobPlanTask add)
Adds a task to a ProcessFlow. -
Uses of JobPlanTask in com.uc4.util
Methods in com.uc4.util that return JobPlanTask Modifier and Type Method Description JobPlanTask
WorkFlowTaskFactory. createWorkflowTask(com.uc4.util.XMLDocument doc, org.w3c.dom.Element task, ConnectionAttributes session)
Creates a new WorkflowTask.
-