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

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

package com.capitalone.dashboard.model;

public enum ScanState {
    COMPLETED("Completed"),
    INVALID("Invalid"),
    NO_FINDINGS("No Findings");


    private String state;

    ScanState(String state) {
        this.state = state;
    }

    public String getState() {
        return this.state;
    }

    @Override
    public String toString() {
        return this.state;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy