Class AtLeastOneExistsRule
java.lang.Object
org.pipservices3.commons.validate.AtLeastOneExistsRule
- All Implemented Interfaces:
IValidationRule
Validation rule that check that at least one of the object properties is not null.
### Example ###
Schema schema = new Schema()
.withRule(new AtLeastOneExistsRule("field1", "field2"));
schema.validate({ field1: 1, field2: "A" }); // Result: no errors
schema.validate({ field1: 1 }); // Result: no errors
schema.validate({ }); // Result: at least one of properties field1, field2 must exist
- See Also:
-
Constructor Summary
ConstructorDescriptionAtLeastOneExistsRule
(String... properties) Creates a new validation rule and sets its values -
Method Summary
-
Constructor Details
-
AtLeastOneExistsRule
Creates a new validation rule and sets its values- Parameters:
properties
- a list of property names where at least one property must exist
-
-
Method Details
-
validate
Validates a given value against this rule.- Specified by:
validate
in interfaceIValidationRule
- Parameters:
path
- a dot notation path to the value.schema
- a schema this rule is called fromvalue
- a value to be validated.results
- a list with validation results to add new results.
-