Package org.activiti.cloud.modeling.api
Interface ModelExtensionsValidator
-
- All Superinterfaces:
ModelValidationErrorProducer,ModelValidator
public interface ModelExtensionsValidator extends ModelValidator
Business logic related with validation of the extensions of a model
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default StringgetHandledContentType()Get handled content type by this validator (by default JSON).default voidvalidateModelExtensions(byte[] modelContent, ValidationContext validationContext)Validate the given model content.-
Methods inherited from interface org.activiti.cloud.modeling.api.ModelValidationErrorProducer
createModelValidationError, createModelValidationError
-
Methods inherited from interface org.activiti.cloud.modeling.api.ModelValidator
getHandledModelType, validate, validate
-
-
-
-
Method Detail
-
validateModelExtensions
default void validateModelExtensions(byte[] modelContent, ValidationContext validationContext)Validate the given model content.- Parameters:
modelContent- the model content to validatevalidationContext- the validation context
-
getHandledContentType
default String getHandledContentType()
Get handled content type by this validator (by default JSON).- Specified by:
getHandledContentTypein interfaceModelValidator- Returns:
- handled content type
-
-