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 java.util.Map<java.lang.String,java.util.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 java.util.Map<java.lang.String,java.util.List<ExecutableScript>>ProcessApplicationScriptEnvironment. environmentScriptsMethods in org.camunda.bpm.application.impl that return types with arguments of type ExecutableScript Modifier and Type Method Description java.util.Map<java.lang.String,java.util.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 ExecutableScriptScriptTaskActivityBehavior. scriptMethods in org.camunda.bpm.engine.impl.bpmn.behavior that return ExecutableScript Modifier and Type Method Description ExecutableScriptScriptTaskActivityBehavior. getScript()Constructors in org.camunda.bpm.engine.impl.bpmn.behavior with parameters of type ExecutableScript Constructor Description ScriptTaskActivityBehavior(ExecutableScript script, java.lang.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 ExecutableScriptScriptExecutionListener. scriptMethods in org.camunda.bpm.engine.impl.bpmn.listener that return ExecutableScript Modifier and Type Method Description ExecutableScriptScriptExecutionListener. 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 ExecutableScriptBpmnParseUtil. 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 ExecutableScriptItemHandler. 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 ExecutableScriptScriptCaseExecutionListener. scriptMethods in org.camunda.bpm.engine.impl.cmmn.listener that return ExecutableScript Modifier and Type Method Description ExecutableScriptScriptCaseExecutionListener. 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 ExecutableScriptScriptInvocation. scriptConstructors 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 classCompiledExecutableScriptclassDynamicExecutableScriptA script which is dynamically determined during the execution.classDynamicResourceExecutableScriptA script which resource path is dynamically determined during the execution.classDynamicSourceExecutableScriptA script which source code is dynamically determined during the execution.classResourceExecutableScriptA script which is provided by an external resource.classSourceExecutableScriptA script which is provided as source code.Fields in org.camunda.bpm.engine.impl.scripting declared as ExecutableScript Modifier and Type Field Description protected ExecutableScriptScriptCondition. scriptprotected ExecutableScriptScriptValueProvider. scriptMethods in org.camunda.bpm.engine.impl.scripting that return ExecutableScript Modifier and Type Method Description ExecutableScriptScriptFactory. createScriptFromResource(java.lang.String language, java.lang.String resource)ExecutableScriptScriptFactory. createScriptFromResource(java.lang.String language, Expression resourceExpression)ExecutableScriptScriptFactory. createScriptFromSource(java.lang.String language, java.lang.String source)ExecutableScriptScriptFactory. createScriptFromSource(java.lang.String language, Expression sourceExpression)ExecutableScriptScriptCondition. getScript()ExecutableScriptScriptValueProvider. getScript()Methods in org.camunda.bpm.engine.impl.scripting with parameters of type ExecutableScript Modifier and Type Method Description voidScriptValueProvider. 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 java.util.Map<java.lang.String,java.util.List<ExecutableScript>>ScriptingEnvironment. envthe 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 java.util.Map<java.lang.String,java.util.List<ExecutableScript>>ScriptingEnvironment. getEnv(java.lang.String language)protected java.util.List<ExecutableScript>ScriptingEnvironment. getEnvScripts(java.lang.String scriptLanguage)Returns the env scripts for the given language.protected java.util.List<ExecutableScript>ScriptingEnvironment. getEnvScripts(ExecutableScript script, javax.script.ScriptEngine scriptEngine)protected java.util.Map<java.lang.String,java.util.List<ExecutableScript>>ScriptingEnvironment. getPaEnvScripts(ProcessApplicationReference pa)protected java.util.List<ExecutableScript>ScriptingEnvironment. initEnvForLanguage(java.lang.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 java.lang.ObjectScriptingEnvironment. execute(ExecutableScript script, VariableScope scope)execute a given script in the environmentjava.lang.ObjectScriptingEnvironment. execute(ExecutableScript script, VariableScope scope, javax.script.Bindings bindings, javax.script.ScriptEngine scriptEngine)protected java.util.List<ExecutableScript>ScriptingEnvironment. getEnvScripts(ExecutableScript script, javax.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 ExecutableScriptScriptTaskListener. scriptMethods in org.camunda.bpm.engine.impl.task.listener that return ExecutableScript Modifier and Type Method Description ExecutableScriptScriptTaskListener. 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 ExecutableScriptScriptUtil. getScript(java.lang.String language, java.lang.String source, java.lang.String resource, ExpressionManager expressionManager)Creates a newExecutableScriptfrom a source or resource.static ExecutableScriptScriptUtil. getScript(java.lang.String language, java.lang.String source, java.lang.String resource, ExpressionManager expressionManager, ScriptFactory scriptFactory)Creates a newExecutableScriptfrom a source or resource.static ExecutableScriptScriptUtil. getScriptFormSource(java.lang.String language, java.lang.String source, ExpressionManager expressionManager, ScriptFactory scriptFactory)Creates a newExecutableScriptfrom a source.static ExecutableScriptScriptUtil. getScriptFromResource(java.lang.String language, java.lang.String resource, ExpressionManager expressionManager, ScriptFactory scriptFactory)Creates a newExecutableScriptfrom a resource.static ExecutableScriptScriptUtil. getScriptFromResource(java.lang.String language, java.lang.String resource, ScriptFactory scriptFactory)Creates a newExecutableScriptfrom a static resource.static ExecutableScriptScriptUtil. getScriptFromResourceExpression(java.lang.String language, Expression resourceExpression, ScriptFactory scriptFactory)Creates a newExecutableScriptfrom a dynamic resource.static ExecutableScriptScriptUtil. getScriptFromSource(java.lang.String language, java.lang.String source, ScriptFactory scriptFactory)Creates a newExecutableScriptfrom a static source.static ExecutableScriptScriptUtil. getScriptFromSourceExpression(java.lang.String language, Expression sourceExpression, ScriptFactory scriptFactory)Creates a newExecutableScriptfrom 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 ExecutableScriptScriptCaseVariableListener. scriptMethods in org.camunda.bpm.engine.impl.variable.listener that return ExecutableScript Modifier and Type Method Description ExecutableScriptScriptCaseVariableListener. getScript()Constructors in org.camunda.bpm.engine.impl.variable.listener with parameters of type ExecutableScript Constructor Description ScriptCaseVariableListener(ExecutableScript script)
-