Class ServiceInvocationResult
- java.lang.Object
-
- com.flowable.serviceregistry.api.interceptor.ServiceInvocationResult
-
public class ServiceInvocationResult extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Exception
exception
protected ServiceInvocationResponse
invocationResponse
protected java.util.Map<java.lang.String,java.lang.Object>
resultMap
-
Constructor Summary
Constructors Constructor Description ServiceInvocationResult(ServiceInvocationResponse invocationResponse, java.util.Map<java.lang.String,java.lang.Object> resultMap)
ServiceInvocationResult(java.lang.Exception exception)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Exception
getException()
ServiceInvocationResponse
getInvocationResponse()
java.util.Map<java.lang.String,java.lang.Object>
getResultMap()
void
setException(java.lang.Exception exception)
void
setInvocationResponse(ServiceInvocationResponse invocationResponse)
void
setResultMap(java.util.Map<java.lang.String,java.lang.Object> resultMap)
-
-
-
Field Detail
-
invocationResponse
protected ServiceInvocationResponse invocationResponse
-
resultMap
protected java.util.Map<java.lang.String,java.lang.Object> resultMap
-
exception
protected java.lang.Exception exception
-
-
Constructor Detail
-
ServiceInvocationResult
public ServiceInvocationResult(ServiceInvocationResponse invocationResponse, java.util.Map<java.lang.String,java.lang.Object> resultMap)
-
ServiceInvocationResult
public ServiceInvocationResult(java.lang.Exception exception)
-
-
Method Detail
-
getInvocationResponse
public ServiceInvocationResponse getInvocationResponse()
-
setInvocationResponse
public void setInvocationResponse(ServiceInvocationResponse invocationResponse)
-
getResultMap
public java.util.Map<java.lang.String,java.lang.Object> getResultMap()
-
setResultMap
public void setResultMap(java.util.Map<java.lang.String,java.lang.Object> resultMap)
-
getException
public java.lang.Exception getException()
-
setException
public void setException(java.lang.Exception exception)
-
-