Uses of Class
org.camunda.bpm.engine.impl.scripting.ExecutableScript
-
-
Uses of ExecutableScript in org.camunda.bpm.application
Methods in org.camunda.bpm.application that return types with arguments of type ExecutableScript Modifier and Type Method Description Map<String,List<ExecutableScript>>
AbstractProcessApplication. getEnvironmentScripts()
-
Uses of ExecutableScript in org.camunda.bpm.application.impl
Fields in org.camunda.bpm.application.impl with type parameters of type ExecutableScript Modifier and Type Field Description protected Map<String,List<ExecutableScript>>
ProcessApplicationScriptEnvironment. environmentScripts
Methods in org.camunda.bpm.application.impl that return types with arguments of type ExecutableScript Modifier and Type Method Description Map<String,List<ExecutableScript>>
ProcessApplicationScriptEnvironment. getEnvironmentScripts()
Returns a map of cached environment scripts per script language. -
Uses of ExecutableScript in org.camunda.bpm.engine.impl.bpmn.behavior
Fields in org.camunda.bpm.engine.impl.bpmn.behavior declared as ExecutableScript Modifier and Type Field Description protected ExecutableScript
ScriptTaskActivityBehavior. script
Methods in org.camunda.bpm.engine.impl.bpmn.behavior that return ExecutableScript Modifier and Type Method Description ExecutableScript
ScriptTaskActivityBehavior. getScript()
Constructors in org.camunda.bpm.engine.impl.bpmn.behavior with parameters of type ExecutableScript Constructor Description ScriptTaskActivityBehavior(ExecutableScript script, String resultVariable)
-
Uses of ExecutableScript in org.camunda.bpm.engine.impl.bpmn.listener
Fields in org.camunda.bpm.engine.impl.bpmn.listener declared as ExecutableScript Modifier and Type Field Description protected ExecutableScript
ScriptExecutionListener. script
Methods in org.camunda.bpm.engine.impl.bpmn.listener that return ExecutableScript Modifier and Type Method Description ExecutableScript
ScriptExecutionListener. getScript()
Constructors in org.camunda.bpm.engine.impl.bpmn.listener with parameters of type ExecutableScript Constructor Description ScriptExecutionListener(ExecutableScript script)
-
Uses of ExecutableScript in org.camunda.bpm.engine.impl.bpmn.parser
Methods in org.camunda.bpm.engine.impl.bpmn.parser that return ExecutableScript Modifier and Type Method Description static ExecutableScript
BpmnParseUtil. parseCamundaScript(Element scriptElement)
Parses a camunda script element. -
Uses of ExecutableScript in org.camunda.bpm.engine.impl.cmmn.handler
Methods in org.camunda.bpm.engine.impl.cmmn.handler that return ExecutableScript Modifier and Type Method Description protected ExecutableScript
ItemHandler. initializeScript(CmmnElement element, CmmnActivity activity, CmmnHandlerContext context, CamundaScript script)
-
Uses of ExecutableScript in org.camunda.bpm.engine.impl.cmmn.listener
Fields in org.camunda.bpm.engine.impl.cmmn.listener declared as ExecutableScript Modifier and Type Field Description protected ExecutableScript
ScriptCaseExecutionListener. script
Methods in org.camunda.bpm.engine.impl.cmmn.listener that return ExecutableScript Modifier and Type Method Description ExecutableScript
ScriptCaseExecutionListener. getScript()
Constructors in org.camunda.bpm.engine.impl.cmmn.listener with parameters of type ExecutableScript Constructor Description ScriptCaseExecutionListener(ExecutableScript script)
-
Uses of ExecutableScript in org.camunda.bpm.engine.impl.delegate
Fields in org.camunda.bpm.engine.impl.delegate declared as ExecutableScript Modifier and Type Field Description protected ExecutableScript
ScriptInvocation. script
Constructors in org.camunda.bpm.engine.impl.delegate with parameters of type ExecutableScript Constructor Description ScriptInvocation(ExecutableScript script, VariableScope scope)
ScriptInvocation(ExecutableScript script, VariableScope scope, BaseDelegateExecution contextExecution)
-
Uses of ExecutableScript in org.camunda.bpm.engine.impl.scripting
Subclasses of ExecutableScript in org.camunda.bpm.engine.impl.scripting Modifier and Type Class Description class
CompiledExecutableScript
class
DynamicExecutableScript
A script which is dynamically determined during the execution.class
DynamicResourceExecutableScript
A script which resource path is dynamically determined during the execution.class
DynamicSourceExecutableScript
A script which source code is dynamically determined during the execution.class
ResourceExecutableScript
A script which is provided by an external resource.class
SourceExecutableScript
A script which is provided as source code.Fields in org.camunda.bpm.engine.impl.scripting declared as ExecutableScript Modifier and Type Field Description protected ExecutableScript
ScriptCondition. script
protected ExecutableScript
ScriptValueProvider. script
Methods in org.camunda.bpm.engine.impl.scripting that return ExecutableScript Modifier and Type Method Description ExecutableScript
ScriptFactory. createScriptFromResource(String language, String resource)
ExecutableScript
ScriptFactory. createScriptFromResource(String language, Expression resourceExpression)
ExecutableScript
ScriptFactory. createScriptFromSource(String language, String source)
ExecutableScript
ScriptFactory. createScriptFromSource(String language, Expression sourceExpression)
ExecutableScript
ScriptCondition. getScript()
ExecutableScript
ScriptValueProvider. getScript()
Methods in org.camunda.bpm.engine.impl.scripting with parameters of type ExecutableScript Modifier and Type Method Description void
ScriptValueProvider. setScript(ExecutableScript script)
Constructors in org.camunda.bpm.engine.impl.scripting with parameters of type ExecutableScript Constructor Description ScriptCondition(ExecutableScript script)
ScriptValueProvider(ExecutableScript script)
-
Uses of ExecutableScript in org.camunda.bpm.engine.impl.scripting.env
Fields in org.camunda.bpm.engine.impl.scripting.env with type parameters of type ExecutableScript Modifier and Type Field Description protected Map<String,List<ExecutableScript>>
ScriptingEnvironment. env
the cached environment scripts per script languageMethods in org.camunda.bpm.engine.impl.scripting.env that return types with arguments of type ExecutableScript Modifier and Type Method Description protected Map<String,List<ExecutableScript>>
ScriptingEnvironment. getEnv(String language)
protected List<ExecutableScript>
ScriptingEnvironment. getEnvScripts(String scriptLanguage)
Returns the env scripts for the given language.protected List<ExecutableScript>
ScriptingEnvironment. getEnvScripts(ExecutableScript script, ScriptEngine scriptEngine)
protected Map<String,List<ExecutableScript>>
ScriptingEnvironment. getPaEnvScripts(ProcessApplicationReference pa)
protected List<ExecutableScript>
ScriptingEnvironment. initEnvForLanguage(String language)
Initializes the env scripts for a given language.Methods in org.camunda.bpm.engine.impl.scripting.env with parameters of type ExecutableScript Modifier and Type Method Description Object
ScriptingEnvironment. execute(ExecutableScript script, VariableScope scope)
execute a given script in the environmentObject
ScriptingEnvironment. execute(ExecutableScript script, VariableScope scope, Bindings bindings, ScriptEngine scriptEngine)
protected List<ExecutableScript>
ScriptingEnvironment. getEnvScripts(ExecutableScript script, ScriptEngine scriptEngine)
-
Uses of ExecutableScript in org.camunda.bpm.engine.impl.task.listener
Fields in org.camunda.bpm.engine.impl.task.listener declared as ExecutableScript Modifier and Type Field Description protected ExecutableScript
ScriptTaskListener. script
Methods in org.camunda.bpm.engine.impl.task.listener that return ExecutableScript Modifier and Type Method Description ExecutableScript
ScriptTaskListener. getScript()
Constructors in org.camunda.bpm.engine.impl.task.listener with parameters of type ExecutableScript Constructor Description ScriptTaskListener(ExecutableScript script)
-
Uses of ExecutableScript in org.camunda.bpm.engine.impl.util
Methods in org.camunda.bpm.engine.impl.util that return ExecutableScript Modifier and Type Method Description static ExecutableScript
ScriptUtil. getScript(String language, String source, String resource, ExpressionManager expressionManager)
Creates a newExecutableScript
from a source or resource.static ExecutableScript
ScriptUtil. getScript(String language, String source, String resource, ExpressionManager expressionManager, ScriptFactory scriptFactory)
Creates a newExecutableScript
from a source or resource.static ExecutableScript
ScriptUtil. getScriptFormSource(String language, String source, ExpressionManager expressionManager, ScriptFactory scriptFactory)
Creates a newExecutableScript
from a source.static ExecutableScript
ScriptUtil. getScriptFromResource(String language, String resource, ExpressionManager expressionManager, ScriptFactory scriptFactory)
Creates a newExecutableScript
from a resource.static ExecutableScript
ScriptUtil. getScriptFromResource(String language, String resource, ScriptFactory scriptFactory)
Creates a newExecutableScript
from a static resource.static ExecutableScript
ScriptUtil. getScriptFromResourceExpression(String language, Expression resourceExpression, ScriptFactory scriptFactory)
Creates a newExecutableScript
from a dynamic resource.static ExecutableScript
ScriptUtil. getScriptFromSource(String language, String source, ScriptFactory scriptFactory)
Creates a newExecutableScript
from a static source.static ExecutableScript
ScriptUtil. getScriptFromSourceExpression(String language, Expression sourceExpression, ScriptFactory scriptFactory)
Creates a newExecutableScript
from a dynamic source. -
Uses of ExecutableScript in org.camunda.bpm.engine.impl.variable.listener
Fields in org.camunda.bpm.engine.impl.variable.listener declared as ExecutableScript Modifier and Type Field Description protected ExecutableScript
ScriptCaseVariableListener. script
Methods in org.camunda.bpm.engine.impl.variable.listener that return ExecutableScript Modifier and Type Method Description ExecutableScript
ScriptCaseVariableListener. getScript()
Constructors in org.camunda.bpm.engine.impl.variable.listener with parameters of type ExecutableScript Constructor Description ScriptCaseVariableListener(ExecutableScript script)
-