Item | Datatype | Cardinality | Description |
---|
scriptEngines | Complex | [1] |
The list of available script engines
|
scriptEngines\scriptEngine | Complex | [1..n] |
Metadata about a particular script engine
|
scriptEngines\scriptEngine\name | String | [1] |
The name of the script engine to lookup the implementation
using the ScriptEngineManager.getEngineByName()
|
scriptEngines\scriptEngine\isCached | boolean | [0|1] |
Is the script cached or reloaded from the resource service
each time? This setting is useful for debugging when you edit
the script on the fly since the changes take place immediatly.
|
scriptEngines\scriptEngine\isCompiled | boolean | [0|1] |
Is the script compiled to an internal representation before being
executed. Using a compiled script improves the performance together
with cached scripts (see above)
|
scriptEngines\scriptEngine\location | String | [0|1] |
The location of the scripts regarding the resource service. If no
value is supplied than <name> is used.
|
scriptEngines\scriptEngine\preLoad | Complex | [0|1] |
A list of scripts to preload during startup.
|
scriptEngines\scriptEngine\preLoad\script | String | [0..n] |
A script to preload during startup.
|
scriptConfiguration | Complex | [0|1] |
Contains the user-defined configuration to pass
to the executed script using the AvalonScriptContext.
|