Interface PlanningTask


@Internal public interface PlanningTask
  • Method Details

    • getSummary

      @Nullable String getSummary()
    • getDescription

      @Nullable String getDescription()
    • getAssignee

      @Nullable ApplicationUser getAssignee()
    • getDueDate

      @Nullable LocalDate getDueDate()
    • getOriginalEstimate

      @Nullable Long getOriginalEstimate()
    • getRemainingEstimate

      @Nullable Long getRemainingEstimate()
    • getEnvironment

      @Nullable String getEnvironment()
    • getReporter

      @Nullable ApplicationUser getReporter()
    • getPriority

      @Nullable Priority getPriority()
    • getIssueType

      @Nullable IssueType getIssueType()
    • getProject

      @Nullable Project getProject()
    • getLabels

      @Nullable List<String> getLabels()
    • getAffectedVersions

      @Nullable List<Version> getAffectedVersions()
    • getFixVersions

      @Nullable List<Version> getFixVersions()
    • getComponents

      @Nullable List<ProjectComponent> getComponents()
    • getSprint

      @Nullable Sprint getSprint()
    • getTextCustomFieldValue

      @Nullable String getTextCustomFieldValue(@NotNull CustomField customField)
    • getDateTimeCustomFieldValue

      @Nullable Date getDateTimeCustomFieldValue(@NotNull CustomField customField)
    • getNumberCustomFieldValue

      @Nullable Double getNumberCustomFieldValue(@NotNull CustomField customField)
    • getDateCustomFieldValue

      @Nullable LocalDate getDateCustomFieldValue(@NotNull CustomField customField)
    • getLabelsCustomFieldValue

      @Nullable List<String> getLabelsCustomFieldValue(@NotNull CustomField customField)
    • getProjectCustomFieldValue

      @Nullable Project getProjectCustomFieldValue(@NotNull CustomField customField)
    • getSingleVersionCustomFieldValue

      @Nullable Version getSingleVersionCustomFieldValue(@NotNull CustomField customField)
    • getMultiVersionCustomFieldValue

      @Nullable List<Version> getMultiVersionCustomFieldValue(@NotNull CustomField customField)
    • getSingleUserCustomFieldValue

      @Nullable ApplicationUser getSingleUserCustomFieldValue(@NotNull CustomField customField)