Interface IConfigWithValidation
public interface IConfigWithValidation
If your config requires validation, implement this interface and register the config class via
IExtensionPointIoc.configuration()
-
Method Summary
Modifier and TypeMethodDescriptionvoid
validate
(IConfigValidationResult result) Use this method to validate the config properties.
-
Method Details
-
validate
Use this method to validate the config properties. Do not throw exceptions in this method.- Parameters:
result
- used to register warnings and errors
-