Uses of Interface
de.xima.fc.interfaces.workflow.params.IElementLocalValidationParams
-
Packages that use IElementLocalValidationParams Package Description de.xima.fc.interfaces.workflow.elements de.xima.fc.interfaces.workflow.mixin The workflow engine is generic in the sense that it never checks the type of atrigger
ornode
for special types, all logic is implemented in terms of theITriggerHandler
andINodeHandler
interfaces.de.xima.fc.workflow.designer.registry.nodes de.xima.fc.workflow.mixin de.xima.fc.workflow.processor.model de.xima.fc.workflow.validator -
-
Uses of IElementLocalValidationParams in de.xima.fc.interfaces.workflow.elements
Methods in de.xima.fc.interfaces.workflow.elements with parameters of type IElementLocalValidationParams Modifier and Type Method Description IWorkflowElementValidationResult
IElementHandler. validateLocal(IElementLocalValidationParams<TData,TElement> params)
Performs a local validation of the given workflow workflow element properties. -
Uses of IElementLocalValidationParams in de.xima.fc.interfaces.workflow.mixin
Methods in de.xima.fc.interfaces.workflow.mixin with parameters of type IElementLocalValidationParams Modifier and Type Method Description default Class<?>[]
IBeanValidatingElement. getValidationGroups(IElementLocalValidationParams<TData,TElement> params)
Finds the validation groups that should be used for the bean validation.default IWorkflowElementValidationResult
IBeanValidatingElement. validateLocal(IElementLocalValidationParams<TData,TElement> params)
default IWorkflowElementValidationResult
IBeanValidatingNode. validateLocal(IElementLocalValidationParams<TData,WorkflowNode> params)
default IWorkflowElementValidationResult
IHierarchyValidatingNode. validateLocal(IElementLocalValidationParams<TData,WorkflowNode> params)
-
Uses of IElementLocalValidationParams in de.xima.fc.workflow.designer.registry.nodes
-
Uses of IElementLocalValidationParams in de.xima.fc.workflow.mixin
Methods in de.xima.fc.workflow.mixin with parameters of type IElementLocalValidationParams Modifier and Type Method Description default IWorkflowElementValidationResult
IBaseActionNode. validateLocal(IElementLocalValidationParams<TData,WorkflowNode> params)
-
Uses of IElementLocalValidationParams in de.xima.fc.workflow.processor.model
Classes in de.xima.fc.workflow.processor.model that implement IElementLocalValidationParams Modifier and Type Class Description class
ElementLocalValidationParams<TData,TElement extends IWorkflowElementEntity>
Default POJO implementation ofIElementLocalValidationParams
. -
Uses of IElementLocalValidationParams in de.xima.fc.workflow.validator
Fields in de.xima.fc.workflow.validator declared as IElementLocalValidationParams Modifier and Type Field Description protected IElementLocalValidationParams<TData,TElement>
ACustomWorkflowLocalValidator. params
Methods in de.xima.fc.workflow.validator with parameters of type IElementLocalValidationParams Modifier and Type Method Description IWorkflowElementValidationResult
FcChangeStateValidator. validateState(IElementLocalValidationParams<FcChangeStateProps,WorkflowNode> params)
Performs part of the local validation for the change state action by checking whether duplicate states exist.Constructors in de.xima.fc.workflow.validator with parameters of type IElementLocalValidationParams Constructor Description FcChangeStateValidator(IElementLocalValidationParams<FcChangeStateProps,WorkflowNode> params)
Creates a new validator with the given parameters.
-