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() {
{
this.put("required", new RequiredRuler());
this.put("length", new LengthRuler());
this.put("minlength", new MinLengthRuler());
this.put("maxlength", new MaxLengthRuler());
this.put("empty", new EmptyRuler());
this.put("singlefile", new SingleFileRuler());
}
};
}
interface Info {
String MSG_FAILURE = "Rule validation failure: {0}";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy