Package de.uplanet.lucy.server.workflow
Interface IGroovyConfigurableWorkflowObject
- All Superinterfaces:
ICustomConfigurableWorkflowObject
- All Known Implementing Classes:
GroovyScriptWorkflowAction,GroovyScriptWorkflowCondition,GroovyScriptWorkflowEventHandler
-
Method Summary
Modifier and TypeMethodDescriptionbooleanThis flag controls whether compiled Groovy script classes should be cached or not.booleanThis flag controls whether script standard output (printlnetc.) should be suppressed or not.voidsetCacheCompiledScript(boolean p_bCacheCompiledScript) This flag controls whether compiled Groovy script classes should be cached or not.voidsetDisablePrintOutput(boolean p_bDisablePrintOutput) This flag controls whether script standard output (printlnetc.) 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:
trueif compiled Groovy script classes should be cached, orfalseotherwise.
-
setCacheCompiledScript
void setCacheCompiledScript(boolean p_bCacheCompiledScript) This flag controls whether compiled Groovy script classes should be cached or not.- Parameters:
p_bCacheCompiledScript-trueif compiled Groovy script classes should be cached, orfalseotherwise.
-
isDisablePrintOutput
boolean isDisablePrintOutput()This flag controls whether script standard output (printlnetc.) should be suppressed or not.- Returns:
trueif script standard output should be suppressed, orfalseotherwise.
-
setDisablePrintOutput
void setDisablePrintOutput(boolean p_bDisablePrintOutput) This flag controls whether script standard output (printlnetc.) should be suppressed or not.- Parameters:
p_bDisablePrintOutput-trueif script standard output should be suppressed, orfalseotherwise.
-