public interface ServiceInvocationResultResponse
| Modifier and Type | Method and Description |
|---|---|
Object |
getResponseLookupId() |
default Object |
getResponseObject()
The response object from the
ServiceInvocationResponse. |
Object |
getResult()
The result response.
|
ResultType |
getResultType()
The type of the returned result response.
|
ServiceInvocationResponse |
getServiceInvocationResponse()
The service invocation response returned by the specific Service Invoker.
|
Object |
getValue(String name)
The the value for the given name.
|
boolean |
hasValue(String name)
Whether the result response has a value with the given name.
|
Object getResponseLookupId()
boolean hasValue(String name)
null.name - the name of the valuetrue if the result has such a value, false otherwiseObject getValue(String name)
null does not mean that there is no value, it can mean that the value that was present is null.
Use hasValue(String) to check if the result has a certain value or not.name - the name of the valueResultType getResultType()
Object getResult()
ServiceInvocationResponse getServiceInvocationResponse()
default Object getResponseObject()
ServiceInvocationResponse.