Interface Subtasks

All Known Implementing Classes:
SubtasksImpl

public interface Subtasks
Grouping of admin tasks related to the Sub-Tasks section
Since:
v4.0
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addSubTaskType(String subTaskName, String subTaskDescription)
    Adds a new sub-task type.
    void
    Delete an existing sub-task type.
    void
    Disables sub-tasks.
    void
    Enables sub-tasks.
    boolean
     
  • Method Details

    • enable

      void enable()
      Enables sub-tasks.
    • disable

      void disable()
      Disables sub-tasks.
    • isEnabled

      boolean isEnabled()
      Returns:
      true if sub-tasks are currently enabled.
      Since:
      v4.2
    • addSubTaskType

      void addSubTaskType(String subTaskName, String subTaskDescription)
      Adds a new sub-task type. Enables sub-tasks if they are disabled.
      Parameters:
      subTaskName - The name of the new sub-task type.
      subTaskDescription - The description of the new sub-task type.
    • deleteSubTaskType

      void deleteSubTaskType(String subTaskName)
      Delete an existing sub-task type.
      Parameters:
      subTaskName - The name of the sub-task type to be deleted.