|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of ExecutableScript in org.camunda.bpm.application |
|---|
| Methods in org.camunda.bpm.application that return types with arguments of type ExecutableScript | |
|---|---|
Map<String,List<ExecutableScript>> |
AbstractProcessApplication.getEnvironmentScripts()
see ProcessApplicationScriptEnvironment.getEnvironmentScripts() |
| Uses of ExecutableScript in org.camunda.bpm.application.impl |
|---|
| Fields in org.camunda.bpm.application.impl with type parameters of type ExecutableScript | |
|---|---|
protected Map<String,List<ExecutableScript>> |
ProcessApplicationScriptEnvironment.environmentScripts
|
| Methods in org.camunda.bpm.application.impl that return types with arguments of type ExecutableScript | |
|---|---|
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 | |
|---|---|
protected ExecutableScript |
ScriptTaskActivityBehavior.script
|
| Methods in org.camunda.bpm.engine.impl.bpmn.behavior that return ExecutableScript | |
|---|---|
ExecutableScript |
ScriptTaskActivityBehavior.getScript()
|
| Constructors in org.camunda.bpm.engine.impl.bpmn.behavior with parameters of type ExecutableScript | |
|---|---|
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 | |
|---|---|
protected ExecutableScript |
ScriptExecutionListener.script
|
| Methods in org.camunda.bpm.engine.impl.bpmn.listener that return ExecutableScript | |
|---|---|
ExecutableScript |
ScriptExecutionListener.getScript()
|
| Constructors in org.camunda.bpm.engine.impl.bpmn.listener with parameters of type ExecutableScript | |
|---|---|
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 | |
|---|---|
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 | |
|---|---|
protected ExecutableScript |
ItemHandler.initializeScript(org.camunda.bpm.model.cmmn.instance.CmmnElement element,
CmmnActivity activity,
CmmnHandlerContext context,
org.camunda.bpm.model.cmmn.instance.camunda.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 | |
|---|---|
protected ExecutableScript |
ScriptCaseExecutionListener.script
|
| Methods in org.camunda.bpm.engine.impl.cmmn.listener that return ExecutableScript | |
|---|---|
ExecutableScript |
ScriptCaseExecutionListener.getScript()
|
| Constructors in org.camunda.bpm.engine.impl.cmmn.listener with parameters of type ExecutableScript | |
|---|---|
ScriptCaseExecutionListener(ExecutableScript script)
|
|
| Uses of ExecutableScript in org.camunda.bpm.engine.impl.delegate |
|---|
| Fields in org.camunda.bpm.engine.impl.delegate declared as ExecutableScript | |
|---|---|
protected ExecutableScript |
ScriptInvocation.script
|
| Constructors in org.camunda.bpm.engine.impl.delegate with parameters of type ExecutableScript | |
|---|---|
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 | |
|---|---|
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 | |
|---|---|
protected ExecutableScript |
ScriptValueProvider.script
|
protected ExecutableScript |
ScriptCondition.script
|
| Methods in org.camunda.bpm.engine.impl.scripting that return ExecutableScript | |
|---|---|
ExecutableScript |
ScriptFactory.createScriptFromResource(String language,
Expression resourceExpression)
|
ExecutableScript |
ScriptFactory.createScriptFromResource(String language,
String resource)
|
ExecutableScript |
ScriptFactory.createScriptFromSource(String language,
Expression sourceExpression)
|
ExecutableScript |
ScriptFactory.createScriptFromSource(String language,
String source)
|
ExecutableScript |
ScriptValueProvider.getScript()
|
ExecutableScript |
ScriptCondition.getScript()
|
| Methods in org.camunda.bpm.engine.impl.scripting with parameters of type ExecutableScript | |
|---|---|
void |
ScriptValueProvider.setScript(ExecutableScript script)
|
| Constructors in org.camunda.bpm.engine.impl.scripting with parameters of type ExecutableScript | |
|---|---|
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 | |
|---|---|
protected Map<String,List<ExecutableScript>> |
ScriptingEnvironment.env
the cached environment scripts per script language |
| Methods in org.camunda.bpm.engine.impl.scripting.env that return types with arguments of type ExecutableScript | |
|---|---|
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 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 | |
|---|---|
Object |
ScriptingEnvironment.execute(ExecutableScript script,
VariableScope scope)
execute a given script in the environment |
Object |
ScriptingEnvironment.execute(ExecutableScript script,
VariableScope scope,
Bindings bindings,
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 | |
|---|---|
protected ExecutableScript |
ScriptTaskListener.script
|
| Methods in org.camunda.bpm.engine.impl.task.listener that return ExecutableScript | |
|---|---|
ExecutableScript |
ScriptTaskListener.getScript()
|
| Constructors in org.camunda.bpm.engine.impl.task.listener with parameters of type ExecutableScript | |
|---|---|
ScriptTaskListener(ExecutableScript script)
|
|
| Uses of ExecutableScript in org.camunda.bpm.engine.impl.util |
|---|
| Methods in org.camunda.bpm.engine.impl.util that return ExecutableScript | |
|---|---|
static ExecutableScript |
ScriptUtil.getScript(String language,
String source,
String resource,
ExpressionManager expressionManager)
Creates a new ExecutableScript from a source or resource. |
static ExecutableScript |
ScriptUtil.getScript(String language,
String source,
String resource,
ExpressionManager expressionManager,
ScriptFactory scriptFactory)
Creates a new ExecutableScript from a source or resource. |
static ExecutableScript |
ScriptUtil.getScriptFormSource(String language,
String source,
ExpressionManager expressionManager,
ScriptFactory scriptFactory)
Creates a new ExecutableScript from a source. |
static ExecutableScript |
ScriptUtil.getScriptFromResource(String language,
String resource,
ExpressionManager expressionManager,
ScriptFactory scriptFactory)
Creates a new ExecutableScript from a resource. |
static ExecutableScript |
ScriptUtil.getScriptFromResource(String language,
String resource,
ScriptFactory scriptFactory)
Creates a new ExecutableScript from a static resource. |
static ExecutableScript |
ScriptUtil.getScriptFromResourceExpression(String language,
Expression resourceExpression,
ScriptFactory scriptFactory)
Creates a new ExecutableScript from a dynamic resource. |
static ExecutableScript |
ScriptUtil.getScriptFromSource(String language,
String source,
ScriptFactory scriptFactory)
Creates a new ExecutableScript from a static source. |
static ExecutableScript |
ScriptUtil.getScriptFromSourceExpression(String language,
Expression sourceExpression,
ScriptFactory scriptFactory)
Creates a new ExecutableScript 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 | |
|---|---|
protected ExecutableScript |
ScriptCaseVariableListener.script
|
| Methods in org.camunda.bpm.engine.impl.variable.listener that return ExecutableScript | |
|---|---|
ExecutableScript |
ScriptCaseVariableListener.getScript()
|
| Constructors in org.camunda.bpm.engine.impl.variable.listener with parameters of type ExecutableScript | |
|---|---|
ScriptCaseVariableListener(ExecutableScript script)
|
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||