Interface IWorkflowLocalValidator<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.
- All Known Implementing Classes:
 FcChangeStateValidator
public interface IWorkflowLocalValidator<TData,TElement extends IWorkflowElementEntity>Interface for all local validators of workflow elements. When a built-in node is validated and a customized validation is required, theINodeHandlerdelegates to these executors.- Since:
 - 7.0.0
 - Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IWorkflowElementValidationResultvalidateLocal()Performs the local validation, seeIElementHandler.validateLocal(IElementLocalValidationParams)for details. 
 - 
 
- 
- 
Method Detail
- 
validateLocal
IWorkflowElementValidationResult validateLocal() throws WorkflowValidationException
Performs the local validation, seeIElementHandler.validateLocal(IElementLocalValidationParams)for details.- Returns:
 - The result of the validation.
 - Throws:
 WorkflowValidationException- When an unexpected error occurred during validation.
 
 - 
 
 -