new module:ct-core /validator /Map Config Key Validator(config)
The MapConfigKeyValidator
is a module:ct-trading/validation/Validator
that ensures the key being
validated is an allowed key in the given configuration.
Parameters:
Name | Type | Description |
---|---|---|
config |
object | configuration object specifying the allowed/required keys and values in a map.
The validity of the config object is checked by the utility method
|
- Implements:
Methods
validate(key, attributes, validation Result)
Determine whether the given key is allowed according to the config and set result on the provided
module:br-validation/ValidationResult
.
Parameters:
Name | Type | Description |
---|---|---|
key |
Object | The key to validate. |
attributes |
Object | attributes to control the validation process. Not used in this implementation. |
validationResult |
module:br-validation |
the ValidationResult in which to store the result of this validation. |
- Implements: