Class FieldValidation
java.lang.Object
com.aquima.interactions.composer.model.FieldValidation
- All Implemented Interfaces:
IFieldValidation
,Serializable
This class defines a single field validation.
- Since:
- 7.1
- Author:
- O. Kerpershoek
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionFieldValidation
(String type, boolean blocking, boolean essential, IMultilingualText message, Map<String, String> parameters) Constructor to create a field validation with a message.FieldValidation
(String type, boolean blocking, boolean essential, String messageId, Map<String, String> parameters) Deprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Modifier and TypeMethodDescriptionThis method returns the message that should be shown in case the validation fails.This method returns the message Id that should be shown in case the validation fails.String[]
This method returns an array containing the parameter names for which a parameter value is defined.getParameterValue
(String key) This method returns the value for the specified parameter name.This method returns the type name of the validator that should be used for the field.boolean
This method returns a boolean indicating if the validation is blocking is not successful.boolean
This method returns a boolean indicating if the validation may be considered a fatal error, and further validation of the value is not needed.toString()
-
Field Details
-
REQUIRED_TYPE
- See Also:
-
REQUIRED_MSG_ID
- See Also:
-
-
Constructor Details
-
FieldValidation
@Deprecated(forRemoval=true) public FieldValidation(String type, boolean blocking, boolean essential, String messageId, Map<String, String> parameters) Deprecated, for removal: This API element is subject to removal in a future version.Constructor to create a field validation with a messageId. Deprecated because a FieldValidation with a messageId does NOT always lead to a validation message being send as intended to the frontend. Instead use the constructor that expects a message- Parameters:
type
- The type name of the validation, may not be null.blocking
- Indicating if the validation is blocking, may not be null.essential
- Boolean indicating if the validation may be considered a fatal error, and further validation of the value is not needed, may not be null.messageId
- The message Id that should be shown in case the validation fails, may not be null.parameters
- The parameters of the validation, may be null.
-
FieldValidation
public FieldValidation(String type, boolean blocking, boolean essential, IMultilingualText message, Map<String, String> parameters) Constructor to create a field validation with a message.- Parameters:
type
- The type name of the validation, may not be null.blocking
- Indicating if the validation is blocking, may not be null.essential
- Boolean indicating if the validation may be considered a fatal error, and further validation of the value is not needed, may not be null.message
- The message that should be shown in case the validation fails, may not be null.parameters
- The parameters of the validation, may be null.
-
-
Method Details
-
getTypeName
Description copied from interface:IFieldValidation
This method returns the type name of the validator that should be used for the field.- Specified by:
getTypeName
in interfaceIFieldValidation
- Returns:
- The type name of the validator.
-
isBlocking
public boolean isBlocking()Description copied from interface:IFieldValidation
This method returns a boolean indicating if the validation is blocking is not successful.- Specified by:
isBlocking
in interfaceIFieldValidation
- Returns:
- boolean indicating if the validation is blocking is not successful.
-
isEssential
public boolean isEssential()Description copied from interface:IFieldValidation
This method returns a boolean indicating if the validation may be considered a fatal error, and further validation of the value is not needed.- Specified by:
isEssential
in interfaceIFieldValidation
- Returns:
- Boolean indicating that the validation is essential and must succeed for any further validation to be useful.
-
getMessage
Description copied from interface:IFieldValidation
This method returns the message that should be shown in case the validation fails.- Specified by:
getMessage
in interfaceIFieldValidation
- Returns:
- The message that should be shown in case the validation fails.
-
getMessageId
Description copied from interface:IFieldValidation
This method returns the message Id that should be shown in case the validation fails.- Specified by:
getMessageId
in interfaceIFieldValidation
- Returns:
- The message id that should be shown in case the validation fails.
-
getParameterNames
Description copied from interface:IFieldValidation
This method returns an array containing the parameter names for which a parameter value is defined.- Specified by:
getParameterNames
in interfaceIFieldValidation
- Returns:
- array containing the parameter names for which a parameter value is defined.
-
getParameterValue
Description copied from interface:IFieldValidation
This method returns the value for the specified parameter name. If there is no value specified for the parameter, a null value is returned.- Specified by:
getParameterValue
in interfaceIFieldValidation
- Parameters:
key
- The name of the parameter for which the value is requested.- Returns:
- The value for the specified parameter.
-
toString
-