Uses of Interface
de.xima.fc.interfaces.workflow.validation.IWorkflowValidationMessage
-
Packages that use IWorkflowValidationMessage Package Description de.xima.fc.interfaces.workflow.validation de.xima.fc.workflow de.xima.fc.workflow.processor.logic.validation -
-
Uses of IWorkflowValidationMessage in de.xima.fc.interfaces.workflow.validation
Methods in de.xima.fc.interfaces.workflow.validation that return types with arguments of type IWorkflowValidationMessage Modifier and Type Method Description com.google.common.collect.ImmutableList<IWorkflowValidationMessage>
IWorkflowElementValidationResult. getMessages()
Methods in de.xima.fc.interfaces.workflow.validation with parameters of type IWorkflowValidationMessage Modifier and Type Method Description void
IWorkflowGlobalHandlerValidationContext. addGlobalValidationMessage(ElementKey elementKey, IWorkflowValidationMessage message)
Adds a validations message for the workflow element with the given key.IWorkflowElementValidationResultBuilder
IWorkflowElementValidationResultBuilder. addMessage(IWorkflowValidationMessage message)
Adds the given message @Override to the validation result.Method parameters in de.xima.fc.interfaces.workflow.validation with type arguments of type IWorkflowValidationMessage Modifier and Type Method Description IWorkflowElementValidationResultBuilder
IWorkflowElementValidationResultBuilder. addMessages(Iterable<IWorkflowValidationMessage> messages)
Adds the given messages to the validation result. -
Uses of IWorkflowValidationMessage in de.xima.fc.workflow
Classes in de.xima.fc.workflow that implement IWorkflowValidationMessage Modifier and Type Class Description class
WorkflowValidationMessage
POJO implementation of aIWorkflowValidationMessage
.Methods in de.xima.fc.workflow that return IWorkflowValidationMessage Modifier and Type Method Description static IWorkflowValidationMessage
WorkflowValidationMessage. error(String localizedMessage)
Creates a newIWorkflowValidationMessage
with the given message and the severity set toerror
.static IWorkflowValidationMessage
WorkflowValidationMessage. warning(String localizedMessage)
Creates a newIWorkflowValidationMessage
with the given message and the severity set towarning
. -
Uses of IWorkflowValidationMessage in de.xima.fc.workflow.processor.logic.validation
Methods in de.xima.fc.workflow.processor.logic.validation with parameters of type IWorkflowValidationMessage Modifier and Type Method Description void
DefaultWorkflowValidationContext. addElementValidationMessage(ElementKey key, IWorkflowValidationMessage message)
Adds a validation message for the given workflow element.void
DefaultWorkflowValidationContext. addGlobalValidationMessage(ElementKey key, IWorkflowValidationMessage message)
ElementResultBuilder
ElementResultBuilder. addMessage(IWorkflowValidationMessage message)
void
DefaultWorkflowValidationContext. addProcessValidationMessage(IWorkflowValidationMessage message)
Adds a validation message for the given process.void
DefaultWorkflowValidationContext. addTaskValidationMessage(UUID key, IWorkflowValidationMessage message)
Adds a validation message for the given workflow task.Method parameters in de.xima.fc.workflow.processor.logic.validation with type arguments of type IWorkflowValidationMessage Modifier and Type Method Description ElementResultBuilder
ElementResultBuilder. addMessages(Iterable<IWorkflowValidationMessage> messages)
-