Package de.uplanet.lucy.server.workflow
Interface IGroovyConfigurableWorkflowObject
- All Superinterfaces:
ICustomConfigurableWorkflowObject
- All Known Implementing Classes:
GroovyScriptWorkflowAction
,GroovyScriptWorkflowCondition
,GroovyScriptWorkflowEventHandler
-
Method Summary
Modifier and TypeMethodDescriptionboolean
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.void
setCacheCompiledScript
(boolean p_bCacheCompiledScript) This flag controls whether compiled Groovy script classes should be cached or not.void
setDisablePrintOutput
(boolean p_bDisablePrintOutput) This flag controls whether script standard output (println
etc.) should be suppressed or not.Methods inherited from interface de.uplanet.lucy.server.workflow.ICustomConfigurableWorkflowObject
getCustomProperties, setCustomProperties
-
Method Details
-
isCacheCompiledScript
boolean isCacheCompiledScript()This flag controls whether compiled Groovy script classes should be cached or not.The default value is
true
.- Returns:
true
if compiled Groovy script classes should be cached, orfalse
otherwise.
-
setCacheCompiledScript
void setCacheCompiledScript(boolean p_bCacheCompiledScript) This flag controls whether compiled Groovy script classes should be cached or not.- Parameters:
p_bCacheCompiledScript
-true
if compiled Groovy script classes should be cached, orfalse
otherwise.
-
isDisablePrintOutput
boolean isDisablePrintOutput()This flag controls whether script standard output (println
etc.) should be suppressed or not.- Returns:
true
if script standard output should be suppressed, orfalse
otherwise.
-
setDisablePrintOutput
void setDisablePrintOutput(boolean p_bDisablePrintOutput) This flag controls whether script standard output (println
etc.) should be suppressed or not.- Parameters:
p_bDisablePrintOutput
-true
if script standard output should be suppressed, orfalse
otherwise.
-