Package org.flowable.validation
Interface ProcessValidator
-
- All Known Implementing Classes:
ProcessValidatorImpl
public interface ProcessValidatorValidates a process definition against the rules of the Flowable engine to be executable- Author:
- jbarrez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ValidatorSet>getValidatorSets()Returns theValidatorSetinstances for this process validator.List<ValidationError>validate(BpmnModel bpmnModel)Validates the providedBpmnModeland returns a list of allValidationErroroccurrences found.
-
-
-
Method Detail
-
validate
List<ValidationError> validate(BpmnModel bpmnModel)
Validates the providedBpmnModeland returns a list of allValidationErroroccurrences found.
-
getValidatorSets
List<ValidatorSet> getValidatorSets()
Returns theValidatorSetinstances for this process validator. Useful if some validation rules need to be disabled.
-
-