com.vaadin.data.
Interface BinderValidationStatusHandler<BEAN>
-
Type Parameters:
BEAN
- the bean type of binderAll Superinterfaces:
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface BinderValidationStatusHandler<BEAN> extends SerializableEventListener
Handler for
BinderValidationStatus
changes.Register
an instance of this class to be able to customize validation status handling.The default handler will show
an error message
for failed field validations. For bean level validation errors it will display the first error message instatus label
, if one has been set.Since:
8.0
Author:
Vaadin Ltd
See Also:
BinderValidationStatus
,Binder.validate()
,BindingValidationStatus
-
-
Method Summary
All Methods Modifier and Type Method Description void
statusChange(BinderValidationStatus<BEAN> statusChange)
Invoked when the validation status has changed in binder.
-
-
-
Method Detail
-
statusChange
void statusChange(BinderValidationStatus<BEAN> statusChange)
Invoked when the validation status has changed in binder.
Parameters:
statusChange
- the changed status
-
-