/* * Hibernate Validator, declare and validate application constraints * * License: Apache License, Version 2.0 * See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>. */ package org.hibernate.validator.internal.constraintvalidators.bv.notempty; import java.util.Map; import javax.validation.ConstraintValidator; import javax.validation.ConstraintValidatorContext; import javax.validation.constraints.NotEmpty; /** * Check that the map is not null and not empty. * * @author Guillaume Smet */ public class NotEmptyValidatorForMap implements ConstraintValidator<NotEmpty, Map<?, ?>> { /** * Checks the map is not {@code null} and not empty. * * @param map the map to validate * @param constraintValidatorContext context in which the constraint is evaluated * @return returns {@code true} if the map is not {@code null} and the map is not empty */ @Override public boolean isValid(Map<?, ?> map, ConstraintValidatorContext constraintValidatorContext) { if ( map == null ) { return false; } return map.size() > 0; } }