Interface IWorkflowLocalHandlerValidationContext
-
- All Superinterfaces:
IBaseEnvironmentData
,IBaseWorkflowEnvironmentData
,IWorkflowHandlerValidationContext
,IWorkflowLocalValidationContext
,IWorkflowValidationContext
,IWorkflowValidationEnvironmentData
- All Known Implementing Classes:
DefaultWorkflowValidationContext
public interface IWorkflowLocalHandlerValidationContext extends IWorkflowLocalValidationContext, IWorkflowHandlerValidationContext
Validation context that is passed toIElementHandler.validateLocal(de.xima.fc.interfaces.workflow.params.IElementLocalValidationParams)
.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IWorkflowBeanValidator
getBeanValidator()
-
Methods inherited from interface de.xima.fc.interfaces.workflow.execution.IBaseEnvironmentData
getClient, getEntityContext, getLocale, getUser, getUserModel
-
Methods inherited from interface de.xima.fc.interfaces.workflow.params.IBaseWorkflowEnvironmentData
getProject, getWorkflowVersion
-
Methods inherited from interface de.xima.fc.interfaces.workflow.validation.IWorkflowHandlerValidationContext
getCurrentResourceBundle, getLocalizedMessage
-
Methods inherited from interface de.xima.fc.interfaces.workflow.validation.IWorkflowLocalValidationContext
associateValue, resultBuilder
-
Methods inherited from interface de.xima.fc.interfaces.workflow.validation.IWorkflowValidationContext
getProvider
-
-
-
-
Method Detail
-
getBeanValidator
IWorkflowBeanValidator getBeanValidator()
- Returns:
- An instance of the bean validator that may be used to validate the properties model of a workflow
element. Bean validation is not required, but recommended, as it can be used in the UI as well. Consider
adding the mixin
IBeanValidatingElement
which automatically delegates to the bean validator.
-
-