Class ActivityProperties

java.lang.Object
com.appiancorp.suiteapi.process.ActivityProperties
All Implemented Interfaces:
Serializable

public class ActivityProperties extends Object implements Serializable
Container for the properties of an activity. This bean holds references to the task properties, process properties, and process model properties for a task, the process it is in, and the model for that process.
See Also:
  • Constructor Details

    • ActivityProperties

      public ActivityProperties()
  • Method Details

    • getProcessModelProperties

      public ProcessModelProperties getProcessModelProperties()
      Gets the properties of the underlying ProcessModel of process to which this activity is part of.
      Returns:
      the properties of process model
    • setProcessModelProperties

      public void setProcessModelProperties(ProcessModelProperties processModelProperties_)
      Sets the properties of underlying ProcessModel of process to which this task belongs to
      Parameters:
      processModelProperties_ - ProcessModelProperties to set
    • getProcessProperties

      public ProcessProperties getProcessProperties()
      Gets the properties of process to which this activity belongs to.
      Returns:
      properties of process
    • setProcessProperties

      public void setProcessProperties(ProcessProperties processProperties_)
      Sets the properties of process to which this activity belongs to
      Parameters:
      processProperties_ - ProcessProperties to set
    • getTaskProperties

      public TaskProperties getTaskProperties()
      Gets the properties of task
      Returns:
      properties of task
    • setTaskProperties

      public void setTaskProperties(TaskProperties taskProperties_)
      Sets the properties of task
      Parameters:
      taskProperties_ - TaskProperties to set
    • toString

      public String toString()
      Returns the String representation of the ActivityProperties
      Overrides:
      toString in class Object