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.boolean
isValid()
Gets whether the plugin configuration is valid.
-
Method Details
-
isValid
boolean isValid()Gets whether the plugin configuration is valid. If it is invalid,error messages
may also be available, but a validation result may be invalid even without error messages.- Returns:
true
if the properties are valid,false
if the plugin configuration is invalid.
-
getErrorMessages
Gets the localized error messages. Note that this validation result may beinvalid
even when this list is empty.- Returns:
- A list of localized error messages.
-