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

com.contrastsecurity.http.RuleSeverity Maven / Gradle / Ivy

There is a newer version: 3.4.2
Show newest version
package com.contrastsecurity.http;

import lombok.Getter;

public enum RuleSeverity {

    NOTE("Note"),
    LOW("Low"),
    MEDIUM("Medium"),
    HIGH("High"),
    CRITICAL("Critical");

    @Getter
    private String label;

    RuleSeverity(String label) {
        this.label = label;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy