com.estafet.microservices.scrum.lib.data.sprint.SprintBurndown Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microservices-scrum-data-lib Show documentation
Show all versions of microservices-scrum-data-lib Show documentation
Libaries for Microservices data population for testing
package com.estafet.microservices.scrum.lib.data.sprint;
import java.util.ArrayList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class SprintBurndown {
private Integer id;
private Integer number;
private List sprintDays = new ArrayList();
public Integer getId() {
return id;
}
public Integer getNumber() {
return number;
}
public String getName() {
return "Sprint #" + number;
}
public List getSprintDays() {
return sprintDays;
}
}