Uses of Class
org.camunda.bpm.engine.impl.scripting.ScriptFactory
Packages that use ScriptFactory
Package
Description
-
Uses of ScriptFactory in org.camunda.bpm.engine.impl.cfg
Fields in org.camunda.bpm.engine.impl.cfg declared as ScriptFactoryModifier and TypeFieldDescriptionprotected ScriptFactory
ProcessEngineConfigurationImpl.scriptFactory
Methods in org.camunda.bpm.engine.impl.cfg that return ScriptFactoryMethods in org.camunda.bpm.engine.impl.cfg with parameters of type ScriptFactoryModifier and TypeMethodDescriptionvoid
ProcessEngineConfigurationImpl.setScriptFactory
(ScriptFactory scriptFactory) -
Uses of ScriptFactory in org.camunda.bpm.engine.impl.scripting.env
Fields in org.camunda.bpm.engine.impl.scripting.env declared as ScriptFactoryModifier and TypeFieldDescriptionprotected ScriptFactory
ScriptingEnvironment.scriptFactory
the script factory used for compiling env scriptsConstructors in org.camunda.bpm.engine.impl.scripting.env with parameters of type ScriptFactoryModifierConstructorDescriptionScriptingEnvironment
(ScriptFactory scriptFactory, List<ScriptEnvResolver> scriptEnvResolvers, ScriptingEngines scriptingEngines) -
Uses of ScriptFactory in org.camunda.bpm.engine.impl.util
Methods in org.camunda.bpm.engine.impl.util that return ScriptFactoryModifier and TypeMethodDescriptionstatic ScriptFactory
ScriptUtil.getScriptFactory()
Returns the configured script factory in the context or a new one.Methods in org.camunda.bpm.engine.impl.util with parameters of type ScriptFactoryModifier and TypeMethodDescriptionstatic 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.