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