Package com.adobe.granite.workflow.exec
Interface ScriptContextProvider
-
- All Known Implementing Classes:
ScriptContextProviderImpl
public interface ScriptContextProvider
Provides more context to script execution by the workflow engine
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addContext(java.util.Map<java.lang.String,java.lang.Object> existingValues)
called by WorkFlow script executiong methods with the parameters being provided to the scripting engine.
-
-
-
Method Detail
-
addContext
void addContext(java.util.Map<java.lang.String,java.lang.Object> existingValues)
called by WorkFlow script executiong methods with the parameters being provided to the scripting engine. Implementers may peek at the values in the Map and add more entries as appropriate. It is not intended for the existing contents to be modified in any way, although it is not enforced- Parameters:
existingValues
- the values being passed to the script execution
-
-