Package org.camunda.connect.spi
Interface ConnectorResponse
-
- All Known Subinterfaces:
CloseableConnectorResponse
- All Known Implementing Classes:
AbstractCloseableConnectorResponse,AbstractConnectorResponse
public interface ConnectorResponseA connector response representing the result of a connector invocation.- Author:
- Daniel Meyer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <V> VgetResponseParameter(java.lang.String name)Returns the value of a response parameter or 'null' if no such parameter is set.java.util.Map<java.lang.String,java.lang.Object>getResponseParameters()Retrieves the map of output parameters from the response.
-
-
-
Method Detail
-
getResponseParameters
java.util.Map<java.lang.String,java.lang.Object> getResponseParameters()
Retrieves the map of output parameters from the response.- Returns:
- the map of output parameters.
-
getResponseParameter
<V> V getResponseParameter(java.lang.String name)
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.
-
-