io.vertx.up.uca.rs.regular.ZERO Maven / Gradle / Ivy
package io.vertx.up.uca.rs.regular;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
interface Pool {
ConcurrentMap RULERS = new ConcurrentHashMap() {
{
put("required", new RequiredRuler());
put("length", new LengthRuler());
put("minlength", new MinLengthRuler());
put("maxlength", new MaxLengthRuler());
put("empty", new EmptyRuler());
put("singlefile", new SingleFileRuler());
}
};
}
interface Info {
String MSG_FAILURE = "[ ZERO ] Rule validation failure: {0}";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy