Interface IPluginInitializeValidationResult
- All Known Implementing Classes:
DefaultPluginValidationResult
public interface IPluginInitializeValidationResult
Represents the result when the properties of a plugin were validated.
- Since:
- 8.0.0
- Author:
- XIMA MEDIA GmbH
-
Method Summary
Modifier and TypeMethodDescriptionGets the localized error messages.booleanisValid()Gets whether the plugin configuration is valid.
-
Method Details
-
isValid
boolean isValid()Gets whether the plugin configuration is valid. If it is invalid,error messagesmay also be available, but a validation result may be invalid even without error messages.- Returns:
trueif the properties are valid,falseif the plugin configuration is invalid.
-
getErrorMessages
Gets the localized error messages. Note that this validation result may beinvalideven when this list is empty.- Returns:
- A list of localized error messages.
-