Package de.uplanet.lucy.server.workflow
Interface IWorkflowCondition
- All Superinterfaces:
IActivatableWorkflowObject,IWorkflowObject,Serializable
- All Known Implementing Classes:
AbstractWorkflowCondition,ApplicationApiRequestWorkflowCondition,CheckPermissionWorkflowCondition,GroovyScriptWorkflowCondition,ListingWorkflowCondition,RandomWorkflowCondition,StandardWorkflowCondition,TransactedAcquireLockWorkflowCondition
This is the interface for workflow condition.
Classes that implement this interface should have the WorkflowCondition
name suffix.
- Since:
- Intrexx 5.0.
-
Field Summary
Fields inherited from interface de.uplanet.lucy.server.workflow.IWorkflowObject
GUID_COMPARATOR -
Method Summary
Modifier and TypeMethodDescriptionGet the afferent transition of this workflow condition.Get the efferent transition of this workflow condition.booleanisActive()Check if this workflow condition is active or inactive.process(IWorkflowEvent p_evt, de.uplanet.lucy.server.workflow.IWorkflowProcessingContext p_wfCtx, de.uplanet.lucy.server.IProcessingContext p_ctx) Process a workflow event in the given context.voidsetActive(boolean p_bActive) Set this workflow condition active or inactive.voidsetAfferentTransition(WorkflowTransition p_wfTransition) Set the afferent transition of this workflow condition.voidsetEfferentTransitions(WorkflowTransition[] p_efferents) Set the efferent transition of this workflow condition.Methods inherited from interface de.uplanet.lucy.server.workflow.IWorkflowObject
getGuid
-
Method Details
-
getAfferentTransition
WorkflowTransition getAfferentTransition()Get the afferent transition of this workflow condition.- Returns:
- The afferent transition (this is normally not
null).
-
setAfferentTransition
Set the afferent transition of this workflow condition.- Parameters:
p_wfTransition- The afferent transition to be set.
-
getEfferentTransitions
WorkflowTransition[] getEfferentTransitions()Get the efferent transition of this workflow condition.- Returns:
- The efferent transitions, or an empty array.
-
setEfferentTransitions
void setEfferentTransitions(WorkflowTransition[] p_efferents) throws InvalidStructureWorkflowException Set the efferent transition of this workflow condition.- Parameters:
p_efferents- The efferent transitions to be set.- Throws:
InvalidStructureWorkflowException
-
isActive
boolean isActive()Check if this workflow condition is active or inactive.See
process(IWorkflowEvent, IWorkflowProcessingContext, IProcessingContext)for the general contract of the activation state.- Specified by:
isActivein interfaceIActivatableWorkflowObject- Returns:
- The activation state of this workflow condition.
-
setActive
void setActive(boolean p_bActive) Set this workflow condition active or inactive.See
process(IWorkflowEvent, IWorkflowProcessingContext, IProcessingContext)for the general contract of the activation state.- Specified by:
setActivein interfaceIActivatableWorkflowObject- Parameters:
p_bActive- The new activation state to be set.
-
process
WorkflowTransition[] process(IWorkflowEvent p_evt, de.uplanet.lucy.server.workflow.IWorkflowProcessingContext p_wfCtx, de.uplanet.lucy.server.IProcessingContext p_ctx) throws InterruptedException, Exception Process a workflow event in the given context.The workflow engine will follow the resulting transitions in the order they were returned in the array.
Normally, a workflow condition should return
nullor an empty array if it is notactive.- Parameters:
p_evt- The event to be processed.p_wfCtx- The workflow processing context.p_ctx- The processing context.- Returns:
- The efferent transitions, or an empty array, or
null. - Throws:
InterruptedException- If processing of this condition has been interrupted.Exception- If an error occurred.
-