Package: validation
Entity validation APIs.
Methods
fail
method fail(errorText as string)
Raises an entity validation exception and terminates execution.
Since 1.5.1
failIf
method failIf(condition as bool, errorText as string)
If the condition is true
raises an entity validation exception and terminates execution.
Since 1.5.1
reject
method reject(entityName as string, propertyName as string, errorText as string)
Rejects the value of the specified property and terminates execution.
rejectIf
method rejectIf(condition as bool, entityName as string, propertyName as string, errorText as string)
If the condition is true
rejects the value of the specified property and terminates execution.
Since 1.5.1
rejectItem
method rejectItem(childEntityName as string, childPropertyName as string, index as int, errorText as string)
Rejects the value of the specified property of a child entity (at index) and terminates execution.
Since 1.5.1
rejectItemIf
method rejectItemIf(condition as bool, childEntityName as string, childPropertyName as string, index as int, errorText as string)
If the condition is true
rejects the value of the specified property of a child entity (at index) and terminates execution.
Since 1.5.1