com.capitalone.dashboard.model.ExecutiveFeatureMetrics 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 executive
*/
public class ExecutiveFeatureMetrics {
private String name;
private String type;
private String lobName;
private String 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 String getLobName() {
return lobName;
}
public void setLobName(String lobName) {
this.lobName = lobName;
}
public List getApplications() {
return applications;
}
public void setApplications(List applications) {
this.applications = applications;
}
public String getPercentage() {
return percentage;
}
public void setPercentage(String percentage) {
this.percentage = percentage;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy