com.capitalone.dashboard.model.PerfIndicators 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;
public class PerfIndicators {
private String type;
private double target;
private double achieved;
private String status;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public double getTarget() {
return target;
}
public void setTarget(double target) {
this.target = target;
}
public double getAchieved() {
return achieved;
}
public void setAchieved(double achieved) {
this.achieved = achieved;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy