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

io.vertx.up.uca.rs.regular.EmptyRuler Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package io.vertx.up.uca.rs.regular;

import io.vertx.up.atom.Rule;
import io.vertx.up.exception.WebException;

import java.util.Collection;

class EmptyRuler extends BaseRuler {
    @Override
    public WebException verify(final String field,
                               final Object value,
                               final Rule rule) {
        WebException error = null;
        if (null != value && value instanceof Collection) {
            final Collection reference = (Collection) value;
            if (reference.isEmpty()) {
                error = failure(field, value, rule);
            }
        }
        return error;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy