Interface NotesAndTasksData.NoteTask

Enclosing interface:
NotesAndTasksData

public static interface NotesAndTasksData.NoteTask
Note / task data.
Author:
Kevin Goeser
  • Method Details

    • getTitle

      String getTitle()
    • setTitle

      void setTitle(String title)
    • getDescription

      String getDescription()
    • setDescription

      void setDescription(String description)
    • getIconID

      UUID getIconID()
    • setIconID

      void setIconID(UUID iconID)
    • getCategory

      String getCategory()
    • setCategory

      void setCategory(String category)
    • getAssociatedURL

      URL getAssociatedURL()
      Returns:
      Associated URL, e.g. external task tracker.
    • setAssociatedURL

      void setAssociatedURL(URL url)
    • getCreationTime

      long getCreationTime()
    • setCreationTime

      void setCreationTime(long creationTime)
    • getCreationAgent

      QualifiedAgent getCreationAgent()
    • setCreationAgent

      void setCreationAgent(QualifiedAgent creationAgent)
    • getModificationTime

      long getModificationTime()
    • setModificationTime

      void setModificationTime(long modificationTime)
    • getModificationAgent

      QualifiedAgent getModificationAgent()
    • setModificationAgent

      void setModificationAgent(QualifiedAgent modificationAgent)
    • getAssignmentRule

      String getAssignmentRule()
      Returns:
      The assignment rule.
    • setAssignmentRule

      void setAssignmentRule(String assignmentRule)
      Parameters:
      assignmentRule -
    • getState

      Returns:
      The state of the task.
    • setState

      void setState(NotesAndTasksData.TaskState state)
      Setter for getState().
      Parameters:
      state -
    • getPriority

      int getPriority()
      Returns:
      Priority as defined in the worklist model.
    • setPriority

      void setPriority(int priority)
      Setter for getPriority().
      Parameters:
      priority -
    • getComplexity

      long getComplexity()
      Returns:
      Complexity as defined in the worklist model (milliseconds).
    • setComplexity

      void setComplexity(long complexity)
      Setter for getComplexity().
      Parameters:
      complexity -
    • blocksRelease

      boolean blocksRelease()
      Blocks the release of the template.
      Returns:
      True, if a template should not released if the task not in "done" state.
    • setBlocksRelease

      void setBlocksRelease(boolean blocksRelease)
      Setter for blocksRelease().
      Parameters:
      blocksRelease -