Interface TaskMappingsValidator
-
- All Superinterfaces:
ModelValidationErrorProducer
- All Known Implementing Classes:
TaskMappingsServiceTaskImplementationValidator
public interface TaskMappingsValidator extends ModelValidationErrorProducer
Task mappings validator interface. This implements specific process tasks mapping validations and is related to the more generic process extensions validation logic implemented inModelExtensionsValidator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stream<ModelValidationError>validateTaskMappings(List<MappingModel> taskMappings, Map<String,Constant> taskConstants, ValidationContext validationContext)Validate the given list of task mappings.-
Methods inherited from interface org.activiti.cloud.modeling.api.ModelValidationErrorProducer
createModelValidationError, createModelValidationError
-
-
-
-
Method Detail
-
validateTaskMappings
Stream<ModelValidationError> validateTaskMappings(List<MappingModel> taskMappings, Map<String,Constant> taskConstants, ValidationContext validationContext)
Validate the given list of task mappings.- Parameters:
taskMappings- the list of task mappings to validatevalidationContext- the validation contexttaskConstants- the constants associated to the task- Returns:
- the stream of validation errors
-
-