/* * 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.test.constraints.boolcomposition.localconstrval; import javax.validation.ConstraintValidator; import javax.validation.ConstraintValidatorContext; /** * Test mode for HV-390. * * Copy of SmallStringValidator, but in this case used to validate another annotation type. * * @author Federico Mancini * @author Dag Hovland */ public class LongStringValidator implements ConstraintValidator<PatternOrLong, String> { @Override public boolean isValid(String value, ConstraintValidatorContext context) { boolean pass; if ( value == null ) { pass = true; } else { pass = value.length() > 10; } return pass; } }