Uses of Class
org.apache.tapestry5.ValidationException
Packages that use ValidationException
Package
Description
Root package for Tapestry, containing common interfaces and data types used throughout the framework.
The set of core components available in all Tapestry applications
[INTERNAL USE ONLY] JSR-303 Bean Validation implementation details; API subject to change
[INTERNAL USE ONLY] internal service classes; API subject to change
[INTERNAL USE ONLY] translator implementation classes; API subject to change.
Validators for use by Tapestry (and custom) form field components.
-
Uses of ValidationException in org.apache.tapestry5
Methods in org.apache.tapestry5 that throw ValidationExceptionModifier and TypeMethodDescriptionInvoked after the client-submitted value has beentranslated
to check that the value conforms to expectations (often, in terms of minimum or maximum value).FieldValidationSupport.parseClient
(String clientValue, ComponentResources componentResources, FieldTranslator<Object> translator, NullFieldStrategy nullFieldStrategy) A wrapper aroundTranslator.parseClient(Field, String, String)
.Translator.parseClient
(Field field, String clientValue, String message) Converts a submitted request value into an appropriate server side value.void
FieldValidationSupport.validate
(Object value, ComponentResources componentResources, FieldValidator validator) Performs validation on a parsed value from the client.void
Invoked after the client-submitted value has beentranslated
to check that the value conforms to expectations (often, in terms of minimum or maximum value).void
Validator.validate
(Field field, C constraintValue, MessageFormatter formatter, T value) Invoked after the client-submitted value has beentranslated
to check that the value conforms to expectations (often, in terms of minimum or maximum value). -
Uses of ValidationException in org.apache.tapestry5.corelib.components
Methods in org.apache.tapestry5.corelib.components that throw ValidationException -
Uses of ValidationException in org.apache.tapestry5.internal.beanvalidator
Methods in org.apache.tapestry5.internal.beanvalidator that throw ValidationException -
Uses of ValidationException in org.apache.tapestry5.internal.services
Methods in org.apache.tapestry5.internal.services that throw ValidationExceptionModifier and TypeMethodDescriptionFieldValidationSupportImpl.parseClient
(String clientValue, ComponentResources componentResources, FieldTranslator<Object> translator, NullFieldStrategy nullFieldStrategy) void
void
FieldValidationSupportImpl.validate
(Object value, ComponentResources componentResources, FieldValidator validator) void
-
Uses of ValidationException in org.apache.tapestry5.internal.translator
Methods in org.apache.tapestry5.internal.translator that throw ValidationExceptionModifier and TypeMethodDescriptionNumericTranslator.parseClient
(Field field, String clientValue, String message) StringTranslator.parseClient
(Field field, String clientValue, String message) Passes the clientValue through unchanged. -
Uses of ValidationException in org.apache.tapestry5.validator
Methods in org.apache.tapestry5.validator that throw ValidationExceptionModifier and TypeMethodDescriptionvoid
Email.validate
(Field field, Void constraintValue, MessageFormatter formatter, String value) void
Max.validate
(Field field, Long constraintValue, MessageFormatter formatter, Number value) void
MaxLength.validate
(Field field, Integer constraintValue, MessageFormatter formatter, String value) void
Min.validate
(Field field, Long constraintValue, MessageFormatter formatter, Number value) void
MinLength.validate
(Field field, Integer constraintValue, MessageFormatter formatter, String value) void
None.validate
(Field field, Void constraintValue, MessageFormatter formatter, Object value) Does nothing.void
Regexp.validate
(Field field, Pattern constraintValue, MessageFormatter formatter, String value) void
Required.validate
(Field field, Void constraintValue, MessageFormatter formatter, Object value)