Class ServiceInvocationResult
- java.lang.Object
-
- com.flowable.serviceregistry.api.interceptor.ServiceInvocationResult
-
public class ServiceInvocationResult extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected Exception
exception
protected ServiceInvocationResponse
invocationResponse
protected com.fasterxml.jackson.databind.node.ArrayNode
resultArrayNode
protected List<Map<String,Object>>
resultListMap
protected Map<String,Object>
resultMap
-
Constructor Summary
Constructors Constructor Description ServiceInvocationResult(ServiceInvocationResponse invocationResponse)
ServiceInvocationResult(ServiceInvocationResponse invocationResponse, com.fasterxml.jackson.databind.node.ArrayNode resultArrayNode)
ServiceInvocationResult(ServiceInvocationResponse invocationResponse, List<Map<String,Object>> resultListMap)
ServiceInvocationResult(ServiceInvocationResponse invocationResponse, Map<String,Object> resultMap)
ServiceInvocationResult(Exception exception)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Exception
getException()
ServiceInvocationResponse
getInvocationResponse()
com.fasterxml.jackson.databind.node.ArrayNode
getResultArrayNode()
List<Map<String,Object>>
getResultListMap()
Map<String,Object>
getResultMap()
void
setException(Exception exception)
void
setInvocationResponse(ServiceInvocationResponse invocationResponse)
void
setResultArrayNode(com.fasterxml.jackson.databind.node.ArrayNode resultArrayNode)
void
setResultListMap(List<Map<String,Object>> resultListMap)
void
setResultMap(Map<String,Object> resultMap)
-
-
-
Field Detail
-
invocationResponse
protected ServiceInvocationResponse invocationResponse
-
resultArrayNode
protected com.fasterxml.jackson.databind.node.ArrayNode resultArrayNode
-
exception
protected Exception exception
-
-
Constructor Detail
-
ServiceInvocationResult
public ServiceInvocationResult(ServiceInvocationResponse invocationResponse)
-
ServiceInvocationResult
public ServiceInvocationResult(ServiceInvocationResponse invocationResponse, Map<String,Object> resultMap)
-
ServiceInvocationResult
public ServiceInvocationResult(ServiceInvocationResponse invocationResponse, List<Map<String,Object>> resultListMap)
-
ServiceInvocationResult
public ServiceInvocationResult(ServiceInvocationResponse invocationResponse, com.fasterxml.jackson.databind.node.ArrayNode resultArrayNode)
-
ServiceInvocationResult
public ServiceInvocationResult(Exception exception)
-
-
Method Detail
-
getInvocationResponse
public ServiceInvocationResponse getInvocationResponse()
-
setInvocationResponse
public void setInvocationResponse(ServiceInvocationResponse invocationResponse)
-
getResultArrayNode
public com.fasterxml.jackson.databind.node.ArrayNode getResultArrayNode()
-
setResultArrayNode
public void setResultArrayNode(com.fasterxml.jackson.databind.node.ArrayNode resultArrayNode)
-
getException
public Exception getException()
-
setException
public void setException(Exception exception)
-
-