azkaban.project.validator.ValidationStatus Maven / Gradle / Ivy
package azkaban.project.validator;
/**
* Status of the ValidationReport. It also represents the severity of each rule. The order of
* severity for the status is PASS < WARN < ERROR.
*/
public enum ValidationStatus {
PASS("PASS"),
WARN("WARN"),
ERROR("ERROR");
private final String _status;
private ValidationStatus(final String status) {
this._status = status;
}
@Override
public String toString() {
return this._status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy