Package org.camunda.connect.spi
Interface ConnectorResponse
- All Known Subinterfaces:
CloseableConnectorResponse
,HttpResponse
,SoapHttpResponse
- All Known Implementing Classes:
AbstractCloseableConnectorResponse
,AbstractConnectorResponse
,HttpResponseImpl
,SoapHttpResponseImpl
public interface ConnectorResponse
A connector response representing the result of a connector invocation.
- Author:
- Daniel Meyer
-
Method Summary
Modifier and TypeMethodDescription<V> V
getResponseParameter
(String name) Returns the value of a response parameter or 'null' if no such parameter is set.Retrieves the map of output parameters from the response.
-
Method Details
-
getResponseParameters
Retrieves the map of output parameters from the response.- Returns:
- the map of output parameters.
-
getResponseParameter
Returns the value of a response parameter or 'null' if no such parameter is set.- Parameters:
name
- the name of the response parameter- Returns:
- the value of the response parameter of null.
-