All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.estafet.microservices.scrum.lib.data.project.ProjectBurndownSprint Maven / Gradle / Ivy

There is a newer version: 1.0.5-SNAPHOT
Show newest version
package com.estafet.microservices.scrum.lib.data.project;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public class ProjectBurndownSprint {

	private Integer id;

	private Integer number;

	private Integer pointsTotal;

	private float idealPointsTotal;

	private String status;

	public Integer getId() {
		return id;
	}

	public float getIdealPointsTotal() {
		return idealPointsTotal;
	}

	public Integer getNumber() {
		return number;
	}

	public Integer getPointsTotal() {
		return pointsTotal;
	}

	public String getStatus() {
		return status;
	}

	public String getName() {
		return "Sprint #" + number;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy