Package org.flowable.bpmn.model
Interface HasScriptInfo
-
- All Known Implementing Classes:
AbstractFlowableHttpHandler,FlowableHttpRequestHandler,FlowableHttpResponseHandler,FlowableListener
public interface HasScriptInfoA scriptable element supporting the type="script" implementation type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScriptInfogetScriptInfo()Return the script info, if present.voidsetScriptInfo(ScriptInfo scriptInfo)Sets the script info
-
-
-
Method Detail
-
getScriptInfo
ScriptInfo getScriptInfo()
Return the script info, if present.ScriptInfo must be populated, when
<element type="script" ...>is set on the element. Meta information and the script payload are provided in the ScriptInfo object.
-
setScriptInfo
void setScriptInfo(ScriptInfo scriptInfo)
Sets the script info- See Also:
getScriptInfo()
-
-