com.capitalone.dashboard.model.Traceability Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-audit Show documentation
Show all versions of api-audit Show documentation
Hygieia Audit Rest API Layer
package com.capitalone.dashboard.model;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
public class Traceability {
private int totalStoryCount;
private double threshold;
private double percentage;
private List totalStories = new ArrayList();
private List totalCompletedStories = new ArrayList<>();
public List getTotalStories() {
return totalStories;
}
public void setTotalStories(List totalStories) { this.totalStories = totalStories; }
public int getTotalStoryCount() {
return totalStoryCount;
}
public void setTotalStoryCount(int totalStoryCount) {
this.totalStoryCount = totalStoryCount;
}
public double getThreshold() {
return threshold;
}
public void setThreshold(double threshold) {
this.threshold = threshold;
}
public double getPercentage() {
return percentage;
}
public void setPercentage(double percentage) {
this.percentage = percentage;
}
public List getTotalCompletedStories() {
return totalCompletedStories;
}
public void setTotalCompletedStories(List totalCompletedStories) {
this.totalCompletedStories = totalCompletedStories;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy