com.commercetools.rmf.validators.RuleSeverity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ctp-validators Show documentation
Show all versions of ctp-validators Show documentation
RAML API client code generators based on the REST Modeling Framework. https://github.com/vrapio/rest-modeling-framework
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;
}
}