Class TaskDefinition

java.lang.Object
com.sas.lsaf.workflow.processdefinition.FlowElementDefinition
com.sas.lsaf.workflow.processdefinition.TaskDefinition
All Implemented Interfaces:
Serializable

public class TaskDefinition extends FlowElementDefinition
The class that represents a task definition.
Since:
2.4
See Also:
  • Constructor Details

    • TaskDefinition

      public TaskDefinition(String elementId, String name, String description, Element.ElementType type, String parentId, Set<FormAttributeDefinition> completionAttributes)
      It is not intended or recommended that the consumer of this API construct these objects. They should only deal with the task definitions returned by the API.
      Parameters:
      elementId - The identifier of the task element as it appears in the process flow definition.
      name - The name of the task as it appears in the process flow definition.
      description - The description of the task as it appears in the process flow definition.
      type - The type of the task that is associated with the type in the process flow definition.
      parentId - The identifier of the flow definition that is the parent of this task.
      completionAttributes - The attribute definitions for the completion properties of a task.
  • Method Details