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

com.capitalone.dashboard.model.LobFeatureMetrics Maven / Gradle / Ivy

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