Class ScriptServiceInvocationResponse
- java.lang.Object
-
- com.flowable.serviceregistry.api.runtime.ServiceInvocationResponse
-
- com.flowable.serviceregistry.api.runtime.ScriptServiceInvocationResponse
-
public class ScriptServiceInvocationResponse extends ServiceInvocationResponse
A script service invocation based response object holding the map of output parameters collected during script execution.- Author:
- Micha Kiener
-
-
Field Summary
Fields Modifier and Type Field Description protected VariableContainer
variableContainer
-
Fields inherited from class com.flowable.serviceregistry.api.runtime.ServiceInvocationResponse
isJsonValue, responseLookupId, statusMessage
-
-
Constructor Summary
Constructors Constructor Description ScriptServiceInvocationResponse(VariableContainer variableContainer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>
getResponseMap()
Object
getResponseObject()
com.fasterxml.jackson.databind.node.ObjectNode
getResponseObjectNode()
-
Methods inherited from class com.flowable.serviceregistry.api.runtime.ServiceInvocationResponse
getResponseArrayNode, getResponseListMap, getResponseLookupId, getStatusMessage, isJsonValue, setJsonValue, setResponseLookupId, setStatusMessage
-
-
-
-
Field Detail
-
variableContainer
protected VariableContainer variableContainer
-
-
Constructor Detail
-
ScriptServiceInvocationResponse
public ScriptServiceInvocationResponse(VariableContainer variableContainer)
-
-
Method Detail
-
getResponseObject
public Object getResponseObject()
- Specified by:
getResponseObject
in classServiceInvocationResponse
-
getResponseObjectNode
public com.fasterxml.jackson.databind.node.ObjectNode getResponseObjectNode()
- Specified by:
getResponseObjectNode
in classServiceInvocationResponse
-
getResponseMap
public Map<String,Object> getResponseMap()
- Specified by:
getResponseMap
in classServiceInvocationResponse
-
-