Class TaigaStatus

java.lang.Object
javiergs.tulip.taiga.TaigaStatus

public class TaigaStatus extends Object
Represents a Taiga workflow status.

Status objects are commonly used for tasks, user stories, issues, and other workflow-driven entities in Taiga.

A status includes display information such as name and color, as well as ordering information used in Kanban or Scrum boards.

Version:
2026.05.27
  • Constructor Details

    • TaigaStatus

      public TaigaStatus(long id, String name, String slug, String color, int order)
      Creates a new Taiga status representation.
      Parameters:
      id - unique Taiga status id
      name - status display name
      slug - URL-friendly status identifier
      color - status display color
      order - workflow ordering position
  • Method Details

    • getId

      public long getId()
      Returns the unique Taiga status identifier.
      Returns:
      status id
    • getName

      public String getName()
      Returns the status display name.
      Returns:
      status name
    • getSlug

      public String getSlug()
      Returns the URL-friendly status identifier.
      Returns:
      status slug
    • getColor

      public String getColor()
      Returns the display color associated with the status.
      Returns:
      status color
    • getOrder

      public int getOrder()
      Returns the workflow ordering position.
      Returns:
      workflow order index
    • toString

      public String toString()
      Returns a textual representation of the status.
      Overrides:
      toString in class Object
      Returns:
      string representation of the status