Package javiergs.tulip.taiga
Class TaigaStatus
java.lang.Object
javiergs.tulip.taiga.TaigaStatus
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 Summary
ConstructorsConstructorDescriptionTaigaStatus(long id, String name, String slug, String color, int order) Creates a new Taiga status representation. -
Method Summary
Modifier and TypeMethodDescriptiongetColor()Returns the display color associated with the status.longgetId()Returns the unique Taiga status identifier.getName()Returns the status display name.intgetOrder()Returns the workflow ordering position.getSlug()Returns the URL-friendly status identifier.toString()Returns a textual representation of the status.
-
Constructor Details
-
TaigaStatus
Creates a new Taiga status representation.- Parameters:
id- unique Taiga status idname- status display nameslug- URL-friendly status identifiercolor- status display colororder- workflow ordering position
-
-
Method Details
-
getId
public long getId()Returns the unique Taiga status identifier.- Returns:
- status id
-
getName
Returns the status display name.- Returns:
- status name
-
getSlug
Returns the URL-friendly status identifier.- Returns:
- status slug
-
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
Returns a textual representation of the status.
-