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

com.commercetools.rmf.validators.RuleSeverity Maven / Gradle / Ivy

Go to download

RAML API client code generators based on the REST Modeling Framework. https://github.com/vrapio/rest-modeling-framework

There is a newer version: 1.0.0-20241120142200
Show newest version
package com.commercetools.rmf.validators;

import com.fasterxml.jackson.annotation.JsonProperty;

public enum RuleSeverity {
    @JsonProperty("error")
    ERROR("error"),
    @JsonProperty("warn")
    WARN("warn"),
    @JsonProperty("info")
    INFO("info");

    private final String severity;

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

    public String getSeverity() {
        return severity;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy