Interface FormFieldValidatorContext
-
- All Known Implementing Classes:
DefaultFormFieldValidatorContext
public interface FormFieldValidatorContext
Object passed in to a
FormFieldValidator
providing access to validation properties- Author:
- Daniel Meyer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.String
getConfiguration()
DelegateExecution
getExecution()
Deprecated.FormFieldHandler
getFormFieldHandler()
java.util.Map<java.lang.String,java.lang.Object>
getSubmittedValues()
VariableScope
getVariableScope()
-
-
-
Method Detail
-
getFormFieldHandler
FormFieldHandler getFormFieldHandler()
-
getExecution
@Deprecated DelegateExecution getExecution()
Deprecated.- Returns:
- the execution
Deprecated, use
getVariableScope()
-
getVariableScope
VariableScope getVariableScope()
- Returns:
- the variable scope in which the value is submitted
-
getConfiguration
java.lang.String getConfiguration()
- Returns:
- the configuration of this validator
-
getSubmittedValues
java.util.Map<java.lang.String,java.lang.Object> getSubmittedValues()
- Returns:
- all values submitted in the form
-
-