Package javiergs.tulip.taiga
Class TaigaSprint
java.lang.Object
javiergs.tulip.taiga.TaigaSprint
Represents a Taiga sprint/milestone.
A sprint is a time-boxed iteration used to organize and schedule user stories and tasks within a Taiga project.
- Version:
- 2026.05.27
-
Constructor Summary
ConstructorsConstructorDescriptionTaigaSprint(long id, String name, String startDate, String endDate) Creates a new Taiga sprint representation. -
Method Summary
-
Constructor Details
-
TaigaSprint
Creates a new Taiga sprint representation.- Parameters:
id- unique Taiga sprint/milestone idname- sprint name; ifnull, an empty string is usedstartDate- sprint start date; ifnull, an empty string is usedendDate- sprint finish date; ifnull, an empty string is used
-
-
Method Details
-
getId
public long getId()Returns the unique Taiga sprint identifier.- Returns:
- sprint id
-
getName
Returns the sprint name.- Returns:
- sprint name
-
getStartDate
Returns the sprint start date.- Returns:
- sprint start date
-
getEndDate
Returns the sprint finish date.- Returns:
- sprint finish date
-
toString
Returns a compact textual representation of the sprint.
-