Interface IWorkflowGlobalValidator<TData,TElement extends IWorkflowElementEntity>
-
- Type Parameters:
TData
- Type of the properties model for the workflow element.TElement
- Type of the workflow element, i.e. a node or trigger.
public interface IWorkflowGlobalValidator<TData,TElement extends IWorkflowElementEntity>
Interface for all global validators of workflow elements. When a built-in node is validated and a customized validation is required, theINodeHandler
delegates to these executors.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
validateGlobal()
Performs the global validation, seeIElementHandler.validateGlobal(IElementGlobalValidationParams)
for details.
-
-
-
Method Detail
-
validateGlobal
default void validateGlobal() throws WorkflowValidationException
Performs the global validation, seeIElementHandler.validateGlobal(IElementGlobalValidationParams)
for details.- Throws:
WorkflowValidationException
- When an unexpected error occurred during validation.
-
-