Class AbstractDataGroupWorkflowAction
java.lang.Object
de.uplanet.lucy.server.workflow.action.AbstractWorkflowAction
de.uplanet.lucy.server.workflow.action.AbstractDataGroupWorkflowAction
- All Implemented Interfaces:
IActivatableWorkflowObject,INamedWorkflowObject,INeedWorkflow,IWorkflowAction,IWorkflowObject,Serializable
- Direct Known Subclasses:
CreateRecordDataGroupWorkflowAction,DeleteRecordDataGroupWorkflowAction,UpdateRecordDataGroupWorkflowAction
- See Also:
-
Field Summary
Fields inherited from interface de.uplanet.lucy.server.workflow.IWorkflowObject
GUID_COMPARATOR -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanisDebug()booleanprocess(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.voidsetDebug(boolean p_bDebug) voidsetDestinationDataGroupGuid(String p_strDataGroupGuid) voidsetSourceDataGroupGuid(String p_strDataGroupGuid) voidsetTriggerSubsequentEvents(boolean p_bTriggerSubsequentEvents) Methods inherited from class de.uplanet.lucy.server.workflow.action.AbstractWorkflowAction
getAfferentTransition, getEfferentTransition, getGuid, getName, getWorkflow, isActive, setActive, setAfferentTransition, setEfferentTransition, setName, setWorkflow, toString
-
Constructor Details
-
AbstractDataGroupWorkflowAction
-
-
Method Details
-
isDebug
public boolean isDebug() -
setDebug
public void setDebug(boolean p_bDebug) -
getSourceDataGroupGuid
-
setSourceDataGroupGuid
-
getDestinationDataGroupGuid
-
setDestinationDataGroupGuid
-
isTriggerSubsequentEvents
public boolean isTriggerSubsequentEvents() -
setTriggerSubsequentEvents
public void setTriggerSubsequentEvents(boolean p_bTriggerSubsequentEvents) -
process
public WorkflowTransition process(IWorkflowEvent p_evt, de.uplanet.lucy.server.workflow.IWorkflowProcessingContext p_wfCtx, de.uplanet.lucy.server.IProcessingContext p_ctx) throws Exception Description copied from interface:IWorkflowActionProcess a workflow event in the given context.Normally, a workflow action should return its efferent transition, regardless whether it is
active, or not.- Parameters:
p_evt- The event to be processed.p_wfCtx- The workflow processing context.p_ctx- The processing context.- Returns:
- The efferent transition, or
null. - Throws:
Exception- If an error occurred.
-