com.capitalone.dashboard.model.LobFeatureMetrics 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.List;
/**
* Quality metrics data model of an line of business
*/
public class LobFeatureMetrics {
private String name;
private String type;
private String percentage;
public String getPercentage() { return percentage; }
public void setPercentage(String percentage) { this.percentage = percentage; }
private List applications;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public List getApplications() { return applications;}
public void setApplications(List applications) { this.applications = applications;}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy