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

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

package com.capitalone.dashboard.model;



import java.util.HashMap;

import java.util.List;

/**
 * Quality metrics data model of a component
 */

public class ComponentFeatureMetrics {

    private String id;

    private String type;

    private String name;

    private String lob;

    private List metrics;

    private String message;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    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 getMetrics() { return metrics; }

    public void setMetrics(List metrics) {
        this.metrics = metrics;
    }

    public String getLob() {
        return lob;
    }

    public void setLob(String lob) {
        this.lob = lob;
    }

    public String getMessage() { return message; }

    public void setMessage(String message) { this.message = message; }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy