org.apache.wicket.bean.validation.BeanValidationContext Maven / Gradle / Ivy
package org.apache.wicket.bean.validation;
import java.lang.annotation.Annotation;
import javax.validation.Validator;
import org.apache.wicket.markup.html.form.FormComponent;
/**
* A read-only view of {@link BeanValidationConfiguration} that can be retrieved by components to
* access the validator and other helpers.
*
* @see BeanValidationConfiguration#get()
*
* @author igor
*
*/
public interface BeanValidationContext extends IPropertyResolver
{
/**
* Gets the tag modifier for the specified annotation type
*
* @param annotationType
* @return tag modifier or {@code null} if none
*/
ITagModifier getTagModifier(Class annotationType);
/**
* @return the validator
*/
Validator getValidator();
/**
* @return the violation translator
*/
IViolationTranslator getViolationTranslator();
@Override
Property resolveProperty(FormComponent> component);
}