Class GroovyScriptWorkflowAction
java.lang.Object
de.uplanet.lucy.server.workflow.action.AbstractWorkflowAction
de.uplanet.lucy.server.workflow.action.GroovyScriptWorkflowAction
- All Implemented Interfaces:
IActivatableWorkflowObject
,ICustomConfigurableWorkflowObject
,IGroovyConfigurableWorkflowObject
,INamedWorkflowObject
,INeedWorkflow
,INeedWorkflowDirectory
,IWorkflowAction
,IWorkflowObject
,Serializable
public final class GroovyScriptWorkflowAction
extends AbstractWorkflowAction
implements INeedWorkflowDirectory, IGroovyConfigurableWorkflowObject
- See Also:
-
Field Summary
Fields inherited from interface de.uplanet.lucy.server.workflow.IWorkflowObject
GUID_COMPARATOR
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGet the custom properties.Get the path of the Groovy script.Get the workflow directory.boolean
This flag controls whether compiled Groovy script classes should be cached or not.boolean
This flag controls whether script standard output (println
etc.) should be suppressed or not.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.void
setCacheCompiledScript
(boolean p_bCacheCompiledScript) This flag controls whether compiled Groovy script classes should be cached or not.void
setCustomProperties
(Map<String, String> p_customProperties) Set the custom properties.void
setDisablePrintOutput
(boolean p_bDisablePrintOutput) This flag controls whether script standard output (println
etc.) should be suppressed or not.void
setScriptPath
(String p_strScript) Set the path of the Groovy script.void
setWorkflowDirectory
(Path p_dir) Set the workflow directory.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
-
GroovyScriptWorkflowAction
-
-
Method Details
-
getWorkflowDirectory
Description copied from interface:INeedWorkflowDirectory
Get the workflow directory.- Specified by:
getWorkflowDirectory
in interfaceINeedWorkflowDirectory
- Returns:
- The workflow directory.
-
setWorkflowDirectory
Description copied from interface:INeedWorkflowDirectory
Set the workflow directory.- Specified by:
setWorkflowDirectory
in interfaceINeedWorkflowDirectory
- Parameters:
p_dir
- The workflow directory.
-
getScriptPath
Get the path of the Groovy script.- Returns:
- The path of the Groovy script.
-
setScriptPath
Set the path of the Groovy script.- Parameters:
p_strScript
- The path of the Groovy script.
-
isCacheCompiledScript
public boolean isCacheCompiledScript()Description copied from interface:IGroovyConfigurableWorkflowObject
This flag controls whether compiled Groovy script classes should be cached or not.The default value is
true
.- Specified by:
isCacheCompiledScript
in interfaceIGroovyConfigurableWorkflowObject
- Returns:
true
if compiled Groovy script classes should be cached, orfalse
otherwise.
-
setCacheCompiledScript
public void setCacheCompiledScript(boolean p_bCacheCompiledScript) Description copied from interface:IGroovyConfigurableWorkflowObject
This flag controls whether compiled Groovy script classes should be cached or not.- Specified by:
setCacheCompiledScript
in interfaceIGroovyConfigurableWorkflowObject
- Parameters:
p_bCacheCompiledScript
-true
if compiled Groovy script classes should be cached, orfalse
otherwise.
-
isDisablePrintOutput
public boolean isDisablePrintOutput()Description copied from interface:IGroovyConfigurableWorkflowObject
This flag controls whether script standard output (println
etc.) should be suppressed or not.- Specified by:
isDisablePrintOutput
in interfaceIGroovyConfigurableWorkflowObject
- Returns:
true
if script standard output should be suppressed, orfalse
otherwise.
-
setDisablePrintOutput
public void setDisablePrintOutput(boolean p_bDisablePrintOutput) Description copied from interface:IGroovyConfigurableWorkflowObject
This flag controls whether script standard output (println
etc.) should be suppressed or not.- Specified by:
setDisablePrintOutput
in interfaceIGroovyConfigurableWorkflowObject
- Parameters:
p_bDisablePrintOutput
-true
if script standard output should be suppressed, orfalse
otherwise.
-
getCustomProperties
Description copied from interface:ICustomConfigurableWorkflowObject
Get the custom properties.- Specified by:
getCustomProperties
in interfaceICustomConfigurableWorkflowObject
- Returns:
- The custom properties.
-
setCustomProperties
Description copied from interface:ICustomConfigurableWorkflowObject
Set the custom properties.- Specified by:
setCustomProperties
in interfaceICustomConfigurableWorkflowObject
- Parameters:
p_customProperties
- The custom properties to be set (must not benull
).
-
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:IWorkflowAction
Process a workflow event in the given context.Normally, a workflow action should return its efferent transition, regardless whether it is
active
, or not.- Specified by:
process
in interfaceIWorkflowAction
- 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.
-